blob: ea745fe0a5d8ec3f794646f134d619eb69c14429 (
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 # Packager: Martin Opel, mo at obbl-net dot de
5 # Depends on: elfutils
6
7 name=prt-utils
8 version=1.1
9 release=2
10 source=(http://crux.nu/files/tools/prt-utils/$name-$version.tar.xz)
11
12 build() {
13 cd $name-$version
14
15 make -C revdep LDFLAGS="-static -lelf -lz"
16
17 make DESTDIR=$PKG install
18 install -d $PKG/etc/revdep.d
19 }
|