diff options
Diffstat (limited to 'debianutils/Pkgfile')
-rwxr-xr-x | debianutils/Pkgfile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/debianutils/Pkgfile b/debianutils/Pkgfile new file mode 100755 index 000000000..c2665527f --- /dev/null +++ b/debianutils/Pkgfile @@ -0,0 +1,21 @@ +# Description: Utilitaires Debian +# Url: http://packages.qa.debian.org/d/debianutils.html +# Maintainer: NutyX core team +# Packager: piernov <piernov@piernov.org> +# Depends on: +# Run on: + +name=debianutils +version=4.2.1 +release=1 + +source=(http://ftp.de.debian.org/debian/pool/main/d/$name/${name}_$version.tar.gz ) + +build() { + cd $name-$version + ./configure --prefix=/usr + make + make DESTDIR=$PKG install + mv $PKG/usr/bin/which $PKG/usr/bin/debian-which +} + |