blob: c2665527f2c684ee503f76726f04334a055061ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
}
|