diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
commit | b6af1e02efe594039707cd882517663d5370f375 (patch) | |
tree | ff9c2d55873e051e82972ba64c017352d3a75d34 /unmaintained/libspectre | |
parent | a71346b7acebc600960a98c84fb32cfd72fe864b (diff) | |
download | aports-b6af1e02efe594039707cd882517663d5370f375.tar.bz2 aports-b6af1e02efe594039707cd882517663d5370f375.tar.xz |
testing/[multiple]: move unmaintained packages
This moves all packages from testing to unmaintained which have not been
updated for atleast 6 months. If you are affected by this commit please follow
this proceddure:
* make sure your packages build on all architectures
* move your pacakge(s) back to testing
* if you want to keep this package and can maintain it (or find somebody to
maintain it for you) for a minimum of 6 months ask it to be moved to community
Diffstat (limited to 'unmaintained/libspectre')
-rw-r--r-- | unmaintained/libspectre/APKBUILD | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/unmaintained/libspectre/APKBUILD b/unmaintained/libspectre/APKBUILD new file mode 100644 index 0000000000..715062c817 --- /dev/null +++ b/unmaintained/libspectre/APKBUILD @@ -0,0 +1,50 @@ +# Contributor: Andrew Hills <ahills@ednos.net> +# Maintainer: Andrew Hills <ahills@ednos.net> +pkgname=libspectre +pkgver=0.2.7 +pkgrel=0 +pkgdesc="A small library for rendering Postscript documents" +url="http://www.freedesktop.org/wiki/Software/libspectre" +arch="all" +license="GPL2" +depends="" +depends_dev="" +makedepends="$depends_dev ghostscript-dev doxygen" +install="" +subpackages="$pkgname-dev $pkgname-doc" +source="http://libspectre.freedesktop.org/releases/libspectre-$pkgver.tar.gz" + +_builddir="$srcdir"/libspectre-$pkgver +prepare() { + update_config_sub +} + +build() { + cd "$_builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var \ + || return 1 + make || return 1 + make doc +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +doc() { + arch="noarch" + mkdir -m 0755 -p "$subpkgdir"/usr/share/doc/libspectre || return 1 + install -m 0644 "$_builddir"/doc/html/* "$subpkgdir"/usr/share/doc/libspectre/ +} + +md5sums="8f759c0e6cd88d68fc8149130fcbc3d3 libspectre-0.2.7.tar.gz" +sha256sums="e81b822a106beed14cf0fec70f1b890c690c2ffa150fa2eee41dc26518a6c3ec libspectre-0.2.7.tar.gz" +sha512sums="2e60905f7eeed9ac6ec3b5f8b47a7dad85178c8c35a63ba097ef6088dd334f7fde5797ecb05cf67532b759d07a65006427914d2cd6b09107ecc90620c9541794 libspectre-0.2.7.tar.gz" |