blob: cd26a977c846f3bba50097fe99b0b179ff96a4cb (
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
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= gzip
PKG_VERSION:= 1.13
PKG_RELEASE:= 1
PKG_HASH:= 7454eb6935db17c6655576c2e1b0fabefd38b4d0936e0f87f48cd062ce91a057
PKG_DESCR:= compression utility
PKG_SECTION:= app/archive
PKG_URL:= http://www.gnu.org/software/gzip/
PKG_SITES:= ${MASTER_SITE_GNU:=gzip/}
PKG_BB:= 1
include $(ADK_TOPDIR)/mk/package.mk
$(eval $(call PKG_template,GZIP,gzip,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
gzip-install:
$(INSTALL_DIR) $(IDIR_GZIP)/usr/bin
$(CP) $(WRKINST)/usr/bin/* $(IDIR_GZIP)/usr/bin
include ${ADK_TOPDIR}/mk/pkg-bottom.mk
|