summaryrefslogtreecommitdiff
path: root/manualPorts/moreutils/Pkgfile
blob: d152a75a8d85b895c2173f2d0a55af820dd682d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Description: A growing collection of the unix tools that nobody thought to write thirty years ago.
# URL:         https://joeyh.name/code/moreutils/
# Maintainer:  Erich Eckner, crux at eckner dot net
# Contributor: 6c37 Team, https://github.com/6c37/crux-ports/issues
# Depends on:  docbook-xsl

name=moreutils
version=0.67
release=1
source=(https://git.kitenet.net/index.cgi/moreutils.git/snapshot/moreutils-$version.tar.gz)

build() {
	cd $name-$version

	make DOCBOOKXSL=/usr/share/xml/docbook/xsl-stylesheets 
	make DESTDIR=$PKG PREFIX=/usr install

	mv $PKG/usr/bin/parallel $PKG/usr/bin/${name}_parallel
	mv $PKG/usr/share/man/man1/parallel.1 $PKG/usr/share/man/man1/${name}_parallel.1
}