diff options
author | A. Wilcox <awilcox@wilcox-tech.com> | 2019-01-07 22:08:41 +0000 |
---|---|---|
committer | A. Wilcox <awilcox@wilcox-tech.com> | 2019-01-07 22:08:41 +0000 |
commit | d0d3e4bb8a64e976e0d7ff8d25fcdbda4556648f (patch) | |
tree | eee20c0afd09b50da7c4ef94e7775b85dd4aca18 /user/wv | |
parent | 14cd2a940d42e9a28c6c51ee7fb8fde9e64efb3e (diff) | |
parent | 677a7de7f445dad6dab7c8531029f3e45fab8a0a (diff) | |
download | packages-d0d3e4bb8a64e976e0d7ff8d25fcdbda4556648f.tar.gz packages-d0d3e4bb8a64e976e0d7ff8d25fcdbda4556648f.tar.bz2 packages-d0d3e4bb8a64e976e0d7ff8d25fcdbda4556648f.tar.xz packages-d0d3e4bb8a64e976e0d7ff8d25fcdbda4556648f.zip |
Merge branch 'abiword' into 'master'
New packages: AbiWord + dependencies
APKBUILDs converted from Alpine, with some changes to bring AbiWord's plugins into a single `abiword` package and cleaning of the licence lines.
This has been tested on x86_64 (2007 Macbook Pro), and AbiWord shows some rendering flicker, which I'm not sure how to debug, but otherwise appears to run fine.
See merge request !141
Diffstat (limited to 'user/wv')
-rw-r--r-- | user/wv/APKBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/user/wv/APKBUILD b/user/wv/APKBUILD new file mode 100644 index 000000000..ec9a0a081 --- /dev/null +++ b/user/wv/APKBUILD @@ -0,0 +1,36 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: multiplexd <multi@in-addr.xyz> +pkgname=wv +pkgver=1.2.9 +pkgrel=0 +pkgdesc="A library that can load and parse Word 2000, 97, 95 and 6 file formats" +url="https://sourceforge.net/projects/wvware" +arch="all" +options="!check" # No test suite. +license="GPL-2.0+ AND RSA-MD5" +subpackages="$pkgname-dev $pkgname-doc" +depends="" +makedepends="libgsf-dev libpng-dev bzip2-dev" +source="https://www.abisource.com/downloads/wv/$pkgver/wv-$pkgver.tar.gz" + +prepare() { + update_config_sub + default_prepare +} + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --mandir=/usr/share/man + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="ae5c762012595ce8922bfda8749ad3e9cb055edab30152c3a5feaaf3ca6601f357d1e301b179e9a5860cd99452dd6e63e5f44f5bcc12f8db148bdd334e0200a5 wv-1.2.9.tar.gz" |