procd: make mDNS TXT record parsing more solid
[openwrt/openwrt.git] / tools / sstrip / Makefile
1 #
2 # Copyright (C) 2006-2012 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=sstrip
10 PKG_VERSION:=3.2
11
12 HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/ELFkickers-$(PKG_VERSION)
13 PKG_SOURCE_URL:=https://www.muppetlabs.com/~breadbox/pub/software
14 PKG_SOURCE:=ELFkickers-$(PKG_VERSION).tar.gz
15 PKG_HASH:=9b81e6c53e0c94fc198d9882eb737156f36d565152dc32118897c77b06a2687c
16
17 PKG_RELEASE:=1
18
19 include $(INCLUDE_DIR)/host-build.mk
20
21 define Host/Install
22 $(CP) $(HOST_BUILD_DIR)/bin/sstrip $(STAGING_DIR_HOST)/bin/
23 endef
24
25 define Host/Clean
26 rm -f $(STAGING_DIR_HOST)/bin/sstrip
27 endef
28
29 $(eval $(call HostBuild))