tar: moved to github
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> git-svn-id: svn://svn.openwrt.org/openwrt/packages@46318 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
4486326237
commit
6341f666de
@ -1,60 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright (C) 2008-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:=tar
|
|
||||||
PKG_VERSION:=1.23
|
|
||||||
PKG_RELEASE:=1
|
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
||||||
PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
|
|
||||||
PKG_MD5SUM:=41e2ca4b924ec7860e51b43ad06cdb7e
|
|
||||||
|
|
||||||
PKG_INSTALL:=1
|
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
|
||||||
|
|
||||||
define Package/tar
|
|
||||||
SECTION:=utils
|
|
||||||
CATEGORY:=Utilities
|
|
||||||
DEPENDS:=+bzip2
|
|
||||||
TITLE:=GNU tar
|
|
||||||
URL:=http://www.gnu.org/software/tar/
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/tar/description
|
|
||||||
Tar is a program for packaging a set of files as a
|
|
||||||
single archive in tar format.
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/tar/postinst
|
|
||||||
#!/bin/sh
|
|
||||||
if [ -e $${IPKG_INSTROOT}/bin/tar ]; then
|
|
||||||
rm -r $${IPKG_INSTROOT}/bin/tar;
|
|
||||||
fi
|
|
||||||
ln -sf /usr/bin/tar $${IPKG_INSTROOT}/bin/tar
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/tar/postrm
|
|
||||||
#!/bin/sh
|
|
||||||
rm $${IPKG_INSTROOT}/bin/tar
|
|
||||||
ln -s busybox $${IPKG_INSTROOT}/bin/tar
|
|
||||||
$${IPKG_INSTROOT}/bin/tar 2>&1 | grep 'applet not found' > /dev/null 2>&1 && rm $${IPKG_INSTROOT}/bin/tar
|
|
||||||
exit 0
|
|
||||||
endef
|
|
||||||
|
|
||||||
MAKE_FLAGS += \
|
|
||||||
CFLAGS="$(TARGET_CFLAGS)" \
|
|
||||||
LDFLAGS="$(TARGET_LDLAGS)"
|
|
||||||
|
|
||||||
define Package/tar/install
|
|
||||||
$(INSTALL_DIR) $(1)/usr/bin/
|
|
||||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call BuildPackage,tar))
|
|
Loading…
x
Reference in New Issue
Block a user