blob: 802c3d00b7773ff02b09d6d5de1af0a3078a74ad (
plain)
1 # Description: Collection of scripts for CRUX, mainly oriented towards package and port management
2 # URL: http://crux.nu/Wiki/PrtUtils
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: elfutils
5
6 name=prt-utils
7 version=1.1.1
8 release=2
9 source=(http://crux.nu/files/tools/prt-utils/$name-$version-1.tar.xz)
10
11 build() {
12 cd $name-$version
13
14 make
15 make DESTDIR=$PKG install
16
17 install -d $PKG/etc/revdep.d
18 }
|