initial import
This commit is contained in:
24
parallel/PKGBUILD
Normal file
24
parallel/PKGBUILD
Normal file
@@ -0,0 +1,24 @@
|
||||
# Maintainer: Jesus E. <heckyel@riseup.net>
|
||||
|
||||
pkgname=parallel
|
||||
pkgver=20161222
|
||||
pkgrel=1
|
||||
pkgdesc="Build and execute command lines from standard input in parallel"
|
||||
license=('GPL-3')
|
||||
arch=('any')
|
||||
url='https://www.gnu.org/software/parallel/'
|
||||
depends=('perl')
|
||||
source=("https://mirrors.sarata.com/gnu/$pkgname/$pkgname-$pkgver.tar.bz2")
|
||||
sha512sums=('19040dd3939a22c6a7023d540b71cb7b08ae74e59925cad0cf31383417b183321aea23ac6959416b67ea0acf62ecab6b07312dbe7cf9fa6230e883713cefea56')
|
||||
|
||||
build() {
|
||||
cd "$pkgname-$pkgver"
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$pkgname-$pkgver"
|
||||
make DESTDIR="$pkgdir" install
|
||||
install -Dm644 COPYING -t "$pkgdir/usr/share/licenses/$pkgname"
|
||||
}
|
||||
Reference in New Issue
Block a user