summaryrefslogtreecommitdiff
path: root/manualPorts/parallel/Pkgfile
blob: 53e990701c88aa862c5492e969902a10da15f26f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Description: A shell tool for executing jobs in parallel using one or more computers.
# URL: http://www.gnu.org/software/parallel/
# Maintainer: Erich Eckner, crux at eckner dot net
# Packager: Danny Rawlins, crux at romster dot me

name=parallel
version=20180522
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)

build() {
	cd $name-$version

	./configure \
		--prefix=/usr \
		--mandir=/usr/share/man

	make
	make DESTDIR=$PKG install
	rm -r $PKG/usr/share/doc
}