CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
gzip: updated to 1.5 and aligned with upstream
authorJose V Beneyto <sepen@crux.nu>
Thu, 18 Oct 2012 22:10:42 +0000 (22:10 +0000)
committerJose V Beneyto <sepen@crux.nu>
Thu, 18 Oct 2012 22:20:18 +0000 (22:20 +0000)
gzip/.footprint
gzip/.md5sum
gzip/Pkgfile

index 388d9f1705b3d0fd7ed345cf358481b2d9ddd146..39f58b6f90cd18fcdb24533d9ce48c04f6785e33 100644 (file)
@@ -5,7 +5,7 @@ drwxr-xr-x      root/root       bin/
 drwxr-xr-x     root/root       usr/
 drwxr-xr-x     root/root       usr/bin/
 -rwxr-xr-x     root/root       usr/bin/gzexe
-lrwxrwxrwx     root/root       usr/bin/uncompress -> /bin/gunzip
+-rwxr-xr-x     root/root       usr/bin/uncompress
 -rwxr-xr-x     root/root       usr/bin/zcmp
 -rwxr-xr-x     root/root       usr/bin/zdiff
 -rwxr-xr-x     root/root       usr/bin/zegrep
index cd607399d36d7f0af55dd966b9003c178fab365d..75545f0353a8bb0f194c54a36fab56b4aa670ff6 100644 (file)
@@ -1 +1 @@
-e381b8506210c794278f5527cba0e765  gzip-1.4.tar.gz
+11b76536941ee1c0221fe6eefbcb32cb  gzip-1.5.tar.gz
index 19089f47cb25faad58b4986096a3d7605cce75e7..e2dfbe4af8ead39017435bad458418d0990d2507 100644 (file)
@@ -5,28 +5,28 @@
 # Depends on:
 
 name=gzip
-version=1.4
+version=1.5
 release=1
 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
 
 build() {
   cd $name-$version
+
   ./configure --build=$CHOST \
               --host=$CTARGET \
               --prefix=/usr \
               --mandir=/usr/man
+
   make
   make DESTDIR=$PKG install
 
-  mkdir -p $PKG/bin
+  install -d $PKG/bin
   mv $PKG/usr/bin/{gzip,gunzip,zcat} $PKG/bin
+
   rm $PKG/usr/man/man1/{gunzip.1,zcat.1,zcmp.1}
-  ln -sf gzip.1.gz $PKG/usr/man/man1/gunzip.1.gz
-  ln -sf gzip.1.gz $PKG/usr/man/man1/zcat.1.gz
+  ln -sf gzip.1.gz  $PKG/usr/man/man1/gunzip.1.gz
+  ln -sf gzip.1.gz  $PKG/usr/man/man1/zcat.1.gz
   ln -sf zdiff.1.gz $PKG/usr/man/man1/zcmp.1.gz 
-  # make uncompress a symlink to gunzip, since it will not work
-  # if / and /usr are on different file systems.
-  rm $PKG/usr/bin/uncompress
-  ln -s /bin/gunzip $PKG/usr/bin/uncompress
+
   rm -r $PKG/usr/share
 }