mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-10 08:12:35 +02:00
34 lines
938 B
Plaintext
34 lines
938 B
Plaintext
# Contributor: Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org>
|
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Celeste <cielesti@protonmail.com>
|
|
pkgname=parallel
|
|
pkgver=20240722
|
|
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="
|
|
f3dbcf8e6f5c7f011f6a21b8395d256e856b805f798531995b5000232d34bd0cf9b105f2cc6da24af5d8cdcdc63b5323ce72f435f835b353d0ab44b2e87d0129 parallel-20240722.tar.bz2
|
|
"
|