CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
gzip: updated to 1.8
[crossrootfs.git] / gzip / Pkgfile
1 # Description: GNU compression utility (replacement for compress)
2 # URL: http://www.gzip.org/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5 # Depends on:
6
7 name=gzip
8 version=1.8
9 release=1
10 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
17 --prefix=/usr
18
19 make
20 make DESTDIR=$PKG install
21
22 install -d $PKG/bin
23 mv $PKG/usr/bin/{gzip,gunzip,zcat} $PKG/bin
24
25 rm $PKG/usr/share/man/man1/{gunzip.1,zcat.1,zcmp.1}
26 ln -sf gzip.1.gz $PKG/usr/share/man/man1/gunzip.1.gz
27 ln -sf gzip.1.gz $PKG/usr/share/man/man1/zcat.1.gz
28 ln -sf zdiff.1.gz $PKG/usr/share/man/man1/zcmp.1.gz
29
30 # make uncompress a symlink to gunzip, since the hardlink
31 # will not work if / and /usr are on different file systems.
32 rm $PKG/usr/bin/uncompress
33 ln -s /bin/gunzip $PKG/usr/bin/uncompress
34
35 rm -r $PKG/usr/share/info
36 }