31 lines
855 B
Bash
31 lines
855 B
Bash
|
# This is an example PKGBUILD file. Use this as a start to creating your own,
|
||
|
# and remove these comments. For more information, see 'man PKGBUILD'.
|
||
|
# NOTE: Please fill out the license field for your package! If it is unknown,
|
||
|
# then please put 'unknown'.
|
||
|
|
||
|
# Maintainer: Future Linux Team <future_linux@163.com>
|
||
|
pkgname=libpipeline
|
||
|
pkgver=1.5.7
|
||
|
pkgrel=1
|
||
|
pkgdesc="a C library for manipulating pipelines of subprocesses in a flexible and convenient way"
|
||
|
arch=('x86_64')
|
||
|
url="https://libpipeline.nongnu.org/"
|
||
|
license=('GPL-3.0-or-later')
|
||
|
depends=('glibc')
|
||
|
source=(https://download.savannah.gnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz)
|
||
|
sha256sums=(b8b45194989022a79ec1317f64a2a75b1551b2a55bea06f67704cb2a2e4690b0)
|
||
|
|
||
|
build() {
|
||
|
cd ${pkgname}-${pkgver}
|
||
|
|
||
|
${CONFIGURE}
|
||
|
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd ${pkgname}-${pkgver}
|
||
|
|
||
|
make DESTDIR=${pkgdir} install
|
||
|
}
|