contrib/parallel/Pkgfile

22 lines
542 B
Plaintext
Raw Normal View History

# Description: A shell tool for executing jobs in parallel using one or more computers.
# URL: http://www.gnu.org/software/parallel/
# Maintainer: Tim Biermann, tbier at posteo dot de
name=parallel
2024-04-24 07:05:37 +02:00
version=20240422
release=1
2023-03-26 11:23:00 +02:00
source=(https://ftp.gnu.org/gnu/parallel/parallel-$version.tar.bz2)
build() {
cd $name-$version
2022-06-25 16:05:18 +02:00
2021-08-28 14:07:31 +02:00
./configure --prefix=/usr
make
make DESTDIR=$PKG install
2021-08-28 14:07:31 +02:00
2022-06-25 16:05:18 +02:00
prt-get isinst zsh || rm -r $PKG/usr/share/zsh
prt-get isinst bash-completion || rm -r $PKG/usr/share/bash-completion
2023-03-26 11:23:00 +02:00
rm -r $PKG/usr/share/doc
}