diff options
author | Noel Kuntze <noel@familie-kuntze.de> | 2020-06-09 03:33:17 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-06-24 17:19:26 +0000 |
commit | b1d071731d8a5f932b4019d29c7c4372ae64c61a (patch) | |
tree | a35b5378bd22602728a703bc6667fe46fba229ac | |
parent | 29cb4efc5d5c45ddd8af8c45c2554132bdfc3c1c (diff) | |
download | aports-b1d071731d8a5f932b4019d29c7c4372ae64c61a.tar.gz aports-b1d071731d8a5f932b4019d29c7c4372ae64c61a.tar.bz2 aports-b1d071731d8a5f932b4019d29c7c4372ae64c61a.tar.xz |
testing/catdoc: new aport
https://www.wagner.pp.ru/~vitus/software/catdoc/
A convertor for Microsoft Word, Excel, PowerPoint and RTF Files to text
Co-authored-by: Leo <thinkabit.ukim@gmail.com>
-rw-r--r-- | testing/catdoc/APKBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/catdoc/APKBUILD b/testing/catdoc/APKBUILD new file mode 100644 index 0000000000..6b01babd35 --- /dev/null +++ b/testing/catdoc/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Leo <thinkabit.ukim@gmail.com> +# Maintainer: Noel Kuntze <noel.kuntze@thermi.consulting> +pkgname=catdoc +pkgver=0.95 +pkgrel=0 +pkgdesc="Convertor for Microsoft Word, Excel, PowerPoint and RTF Files to text" +options="!check" # No testsuite +url="https://www.wagner.pp.ru/~vitus/software/catdoc/" +arch="all" +license="GPL-2.0-only" +subpackages="$pkgname-doc" +source="http://ftp.wagner.pp.ru/pub/catdoc/catdoc-$pkgver.tar.gz" + +# This update is missing wordview.desktop and wordview.xpm +# And is 75% smaller? Something is possibly off, but it does work. + +build() { + ./configure --prefix=/usr --with-wish=/usr/bin/wish + make installroot="$pkgdir" +} + +package() { + install -d "$pkgdir/usr/share/man/man1" + install -m644 doc/*.1 "$pkgdir/usr/share/man/man1" + make -j1 installroot="$pkgdir" mandir=/usr/share/man/ install +} + +sha512sums="dd6bded4b6b70749c007256b182b063ff266f86d53024d8582001678821e8096c5b980bc8f43015d9c82bbe022d71d4ba5fe68aff31b2ff6db3688595e651b2c catdoc-0.95.tar.gz" |