2006-06-27 00:44:04 +00:00
|
|
|
#
|
2012-08-10 19:26:54 +00:00
|
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
2006-06-27 00:44:04 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-06-21 06:19:43 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2006-12-06 23:42:37 +00:00
|
|
|
PKG_NAME:=sstrip
|
2021-09-18 07:57:24 +00:00
|
|
|
PKG_VERSION:=3.2
|
2020-11-25 21:28:17 +00:00
|
|
|
|
|
|
|
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
|
2021-09-18 07:57:24 +00:00
|
|
|
PKG_HASH:=9b81e6c53e0c94fc198d9882eb737156f36d565152dc32118897c77b06a2687c
|
2020-11-25 21:28:17 +00:00
|
|
|
|
2020-07-22 23:46:21 +00:00
|
|
|
PKG_RELEASE:=1
|
2006-06-21 06:19:43 +00:00
|
|
|
|
2007-05-10 07:02:04 +00:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
|
2009-02-22 04:37:20 +00:00
|
|
|
define Host/Install
|
2020-11-25 21:28:17 +00:00
|
|
|
$(CP) $(HOST_BUILD_DIR)/bin/sstrip $(STAGING_DIR_HOST)/bin/
|
2006-06-21 06:19:43 +00:00
|
|
|
endef
|
|
|
|
|
2009-02-22 04:37:20 +00:00
|
|
|
define Host/Clean
|
2007-08-07 00:04:25 +00:00
|
|
|
rm -f $(STAGING_DIR_HOST)/bin/sstrip
|
2006-06-21 06:19:43 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call HostBuild))
|