blob: 4b72cd0bfba7e50b33c992cd5812c3a9dc35a47d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
description="A utility to simplify ports searching/installing."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://jw.smts.ch/files/crux/prt-get_quickstart.html"
depends=()
name=prt-get
version=5.18
release=2
source=(http://jw.smts.ch/files/crux/$name-$version.tar.gz prt-get.conf prt-get.aliases prt-get.diff)
build ()
{
cd ${name}-${version};
patch -p1 -i $SRC/$name.diff;
./configure --prefix=$prefix --mandir=$mandir;
make;
make DESTDIR=$PKG install;
install -m 644 $SRC/prt-get.conf $PKG/etc/;
install -D -m 644 $SRC/prt-get.aliases $PKG/var/lib/pkg/prt-get.aliases
}
|