summaryrefslogtreecommitdiff
path: root/opt/parallel/MAKEPKG
blob: 2c599f42833a50dbd6e7a819984b1bde55a01cf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/mkpkg
# description: Shell tool for executing jobs in parallel
# url: https://www.gnu.org/software/parallel/

name=parallel
version=20260922
release=1
source=(https://ftp.gnu.org/gnu/parallel/parallel-${version}.tar.bz2)

sha256sums=(
    "54837e9e8c16134a3c2e95f91c5fe2f7893d4cc89f252b26735713ceca866387"
)

build() {
	cd parallel-${version}

	./configure \
		--prefix=/usr \
		--mandir=/usr/share/man \
		--docdir=/usr/share/doc/${name}

	make
	make DESTDIR=${PKG} install

	# Remove citation nag files
	rm -rf ${PKG}/usr/share/doc/${name}
}

signify() {
    untrusted comment: public key
    RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}

# vim: filetype=sh