mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 19:27:25 +08:00
28 lines
606 B
Bash
28 lines
606 B
Bash
pkgname=libpipeline
|
|
pkgver=1.4.0
|
|
pkgrel=1
|
|
pkgdesc="a C library for manipulating pipelines of subprocesses in a flexible and convenient way"
|
|
arch=('x86_64')
|
|
url="http://libpipeline.nongnu.org/"
|
|
license=('GPL')
|
|
groups=('base')
|
|
depends=('glibc')
|
|
source=(http://download.savannah.gnu.org/releases/libpipeline/$pkgname-$pkgver.tar.gz)
|
|
sha1sums=('c4deac1c04670beac0e25d78ef1922e6a3740965')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make -k check
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|