mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-05 22:02:22 +02:00
33 lines
889 B
Plaintext
33 lines
889 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Contributor: Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org>
|
|
pkgname=parallel
|
|
pkgver=20231022
|
|
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 $pkgname-bash-completion $pkgname-zsh-completion"
|
|
source="https://ftp.gnu.org/gnu/parallel/parallel-$pkgver.tar.bz2"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
6b311217d1c75f4ef276c560db3c1fbd5491ed283c9033cc3363e2cc7a8fa12765afda5869b8e203b9a75a6660b8d959cad4e741efa4cf07c1736104d8645f23 parallel-20231022.tar.bz2
|
|
"
|