2006-06-27 08:44:04 +08:00
|
|
|
#
|
2012-08-11 03:26:54 +08:00
|
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
2006-06-27 08:44:04 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-06-21 14:19:43 +08:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2006-12-07 07:42:37 +08:00
|
|
|
PKG_NAME:=sstrip
|
2020-11-26 05:28:17 +08:00
|
|
|
PKG_VERSION:=3.1a
|
|
|
|
|
|
|
|
HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/ELFkickers-$(PKG_VERSION)
|
|
|
|
PKG_SOURCE_URL:=https://www.muppetlabs.com/~breadbox/pub/software
|
|
|
|
PKG_SOURCE:=ELFkickers-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_HASH:=06430880aaf4919c5f99fc629da7000347421668c2cf32bced2d401aac276508
|
|
|
|
|
2020-07-23 07:46:21 +08:00
|
|
|
PKG_RELEASE:=1
|
2006-06-21 14:19:43 +08:00
|
|
|
|
2007-05-10 15:02:04 +08:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Install
|
2020-11-26 05:28:17 +08:00
|
|
|
$(CP) $(HOST_BUILD_DIR)/bin/sstrip $(STAGING_DIR_HOST)/bin/
|
2006-06-21 14:19:43 +08:00
|
|
|
endef
|
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Clean
|
2007-08-07 08:04:25 +08:00
|
|
|
rm -f $(STAGING_DIR_HOST)/bin/sstrip
|
2006-06-21 14:19:43 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call HostBuild))
|