summaryrefslogtreecommitdiff
path: root/package/gzip/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-03-03 20:04:34 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2011-03-03 20:04:34 +0100
commit832be8425b55a47c0b8e9d493df1ae81dbe61dd4 (patch)
treea795baaa265e9fbda4d36b71b199ab70177b9891 /package/gzip/Makefile
parentc8034b6c5297caa7124070065ec156812219471c (diff)
more native compile fixes on my ibm x40
Diffstat (limited to 'package/gzip/Makefile')
-rw-r--r--package/gzip/Makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/package/gzip/Makefile b/package/gzip/Makefile
new file mode 100644
index 000000000..bb6513099
--- /dev/null
+++ b/package/gzip/Makefile
@@ -0,0 +1,25 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= gzip
+PKG_VERSION:= 1.2.4
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 618b61219aa2d812893281bf6c66f158
+PKG_DESCR:= a compression utility
+PKG_SECTION:= archive
+PKG_URL:= http://www.gzip.org/
+PKG_SITES:= ${MASTER_SITE_GNU:=gzip/}
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,GZIP,gzip,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+FAKE_FLAGS+= prefix=${WRKINST}
+
+gzip-install:
+ $(INSTALL_DIR) $(IDIR_GZIP)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/bin/{gunzip,zcat,zgrep,gzip} $(IDIR_GZIP)/usr/bin
+
+include ${TOPDIR}/mk/pkg-bottom.mk