blob: dc43514013d52fba03463d2c5461005fe620dfa4 (
plain)
1 # Description: A utility to simplify ports searching/installing
2 # URL: http://jw.tks6.net/files/crux/prt-get_quickstart.html
3 # Maintainer: Johannes Winkelmann, jw at tks6 dot net
4
5 name=prt-get
6 version=0.5.11
7 release=2
8 source=(http://jw.tks6.net/files/crux/prt-get-$version.tar.gz \
9 prt-get.conf)
10
11 build() {
12 cd ${name}-${version}
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16
17 install -m 644 $SRC/prt-get.conf $PKG/etc/
18 }
|