mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-07 14:41:39 +01:00
33 lines
870 B
Plaintext
33 lines
870 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Contributor: Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org>
|
|
pkgname=parallel
|
|
pkgver=20190222
|
|
pkgrel=0
|
|
pkgdesc="Shell tool for executing jobs in parallel"
|
|
arch="noarch"
|
|
url="https://www.gnu.org/software/parallel"
|
|
license="GPL-3.0-or-later"
|
|
options="!check" # Test suite not part of src pkg
|
|
depends="perl"
|
|
subpackages="$pkgname-doc"
|
|
source="https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.bz2"
|
|
|
|
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
|
|
}
|
|
|
|
sha512sums="acd81011ab58c701c54748f69eebf2abbce0fd5bf09308fd7833231796002e6e90c3019db822b1e6dfb5cbfa96d5496c567475e801b9351444111391b9a14d16 parallel-20190222.tar.bz2"
|