summaryrefslogtreecommitdiffstats
path: root/gzip/Pkgfile
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-11 20:04:09 +0100
committerLukc <lukc@upyum.com>2010-12-11 20:04:09 +0100
commitb1f54c169a5cbceeec335c7b11f4c160c84ae627 (patch)
treea4558cd09859a1b32695e32252c10d4cd23f3bf8 /gzip/Pkgfile
parente02500436d3f3b48447c3bea37c28791b210bcc1 (diff)
downloadbase-b1f54c169a5cbceeec335c7b11f4c160c84ae627.tar.gz
base-b1f54c169a5cbceeec335c7b11f4c160c84ae627.tar.bz2
base-b1f54c169a5cbceeec335c7b11f4c160c84ae627.tar.xz
base-b1f54c169a5cbceeec335c7b11f4c160c84ae627.zip
Recette de gzip rejet?e.
Diffstat (limited to 'gzip/Pkgfile')
-rw-r--r--gzip/Pkgfile26
1 files changed, 0 insertions, 26 deletions
diff --git a/gzip/Pkgfile b/gzip/Pkgfile
deleted file mode 100644
index 6d302f8..0000000
--- a/gzip/Pkgfile
+++ /dev/null
@@ -1,26 +0,0 @@
-description="GNU compression utility (replacement for compress)"
-packager=""
-maintainer="CRUX System Team, core-ports at crux dot nu"
-url="http://www.gzip.org/"
-depends=()
-
-name=gzip
-version=1.4
-release=1
-source=(http://ftp.gnu.org/gnu/gzip/gzip-1.4.tar.xz)
-build ()
-{
- cd $name-$version;
- ./configure --prefix=/usr --mandir=/usr/man;
- make;
- make DESTDIR=$PKG install;
- mkdir -p $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 zdiff.1.gz $PKG/usr/man/man1/zcmp.1.gz;
- rm $PKG/usr/bin/uncompress;
- ln -s /bin/gunzip $PKG/usr/bin/uncompress;
- rm -r $PKG/usr/share
-}