blob: fcdfdec0a1aa58dc96d38fb3d883db47ca69d79f (
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.63
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
}
|