packages/utils/gzip/Makefile
lars 1e28de24b4 [packages] Use default templates instead of custom reimplementations where applicable
git-svn-id: svn://svn.openwrt.org/openwrt/packages@19705 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-02-18 13:10:21 +00:00

46 lines
977 B
Makefile

#
# Copyright (C) 2006-2010 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=gzip
PKG_VERSION:=1.3.13
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@GNU/gzip/
PKG_MD5SUM:=c54a31b93e865f6a4410b2dc64662706
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/gzip
SECTION:=utils
CATEGORY:=Utilities
DEPENDS:=
TITLE:=gzip (GNU zip) is a compression utility.
URL:=http://www.gzip.org/
endef
define Package/gzip/description
gzip (GNU zip) is a compression utility designed to be a \
replacement for compress.
endef
CONFIGURE_VARS += \
gl_cv_func_getopt_gnu=yes \
define Package/gzip/install
$(SED) 's,/bin/bash,/bin/sh,g' $(PKG_INSTALL_DIR)/usr/bin/{gunzip,zcat}
$(INSTALL_DIR) $(1)/usr/bin
$(CP) $(PKG_INSTALL_DIR)/usr/bin/{gunzip,gzip,zcat} $(1)/usr/bin/
endef
$(eval $(call BuildPackage,gzip))