mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +03:00
33 lines
812 B
Text
33 lines
812 B
Text
# Contributor: A. Wilcox <awilfox@adelielinux.org>
|
|
# Maintainer: Leo <thinkabit.ukim@gmail.com>
|
|
pkgname=libpipeline
|
|
pkgver=1.5.1
|
|
pkgrel=0
|
|
pkgdesc="C pipeline manipulation library"
|
|
url="http://libpipeline.nongnu.org/"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
checkdepends="check-dev"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
source="https://download.savannah.nongnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
sha512sums="9252c114bc59925eaf73ec9e8bb76b5649ccf985766edd2dc665630ec6de04c341298c74f8dc31c56e9ce20ad83da59df33eb3cc367e18a8012fd693cb823de6 libpipeline-1.5.1.tar.gz"
|