blob: 852197118e0cfd141716c8897383c8cf9365e831 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Description: Outil indispensable pour l'installation et la recherches des ports
# URL: http://jw.smts.ch/files/crux/prt-get_quickstart.html
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
name=prt-get
version=5.18
release=4
source=(http://jw.smts.ch/files/crux/prt-get-$version.tar.gz
prt-get.diff prt-get.conf prt-get.aliases)
build() {
cd ${name}-${version}
patch -p1 -i $SRC/$name.diff
case `uname -m` in
x86_64)
sed -i "s/\.footprint/\.footprint\.x86_64/" src/prtget.cpp;;
i?86)
sed -i "s/\.footprint/\.footprint\.i686/" src/prtget.cpp;;
esac
./configure \
--prefix=/usr \
--mandir=/usr/share/man
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
}
|