diff options
author | Kiyoshi Aman <kiyoshi.aman@gmail.com> | 2017-08-29 15:27:13 -0500 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-08-30 11:05:05 +0000 |
commit | 38febd09e93c094ce5bc306bc478e255249f73b9 (patch) | |
tree | a6f402030030b76280dd959da58d8482dd3d3d3c /testing | |
parent | bc2a0a29095ed63bb4eb6f016bd5705cd15f2c84 (diff) | |
download | aports-38febd09e93c094ce5bc306bc478e255249f73b9.tar.bz2 aports-38febd09e93c094ce5bc306bc478e255249f73b9.tar.xz |
testing/libpipeline: new aport
Diffstat (limited to 'testing')
-rw-r--r-- | testing/libpipeline/APKBUILD | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/testing/libpipeline/APKBUILD b/testing/libpipeline/APKBUILD new file mode 100644 index 0000000000..d5a5fda676 --- /dev/null +++ b/testing/libpipeline/APKBUILD @@ -0,0 +1,36 @@ +# Contributor: A. Wilcox <awilfox@adelielinux.org> +# Maintainer: A. Wilcox <awilfox@adelielinux.org> +pkgname=libpipeline +pkgver=1.4.1 +pkgrel=0 +pkgdesc="C pipeline manipulation library" +url="http://libpipeline.nongnu.org/" +arch="all" +license="GPL-3+" +checkdepends="check-dev" +subpackages="$pkgname-dev $pkgname-doc" +source="http://download.savannah.nongnu.org/releases/libpipeline/libpipeline-$pkgver.tar.gz" + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +check() { + cd "$builddir" + make check +} + +sha512sums="835d65aa3f9436398b5421544ca7857fe9caed52cd2e70320ea04d6315825e648df930e1c225d4aaf0f2edda2a438f6c00f15c556fb9fd30311560fb8d966797 libpipeline-1.4.1.tar.gz" |