2f3313ca38939d7e2813e5866aee7eeaf47fd2ce
[openwrt.git] / tools / upx / Makefile
1 #
2 # Copyright (C) 2011 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:=upx
10 PKG_VERSION:=3.07
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-src.tar.bz2
13 PKG_SOURCE_URL:=@SF/upx
14 PKG_MD5SUM:=8186ab103288242f7e8ecad1acd4af03
15 PKG_CAT:=bzcat
16
17 HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-$(PKG_VERSION)-src
18
19 include $(INCLUDE_DIR)/host-build.mk
20
21 define Host/Compile
22         rm -f $(HOST_BUILD_DIR)/src/.depend
23         $(MAKE) UPX_LZMADIR="$(BUILD_DIR_HOST)/lzma-4.65" -C $(HOST_BUILD_DIR)/src \
24                 CXXFLAGS_WERROR=
25 endef
26
27 define Host/Install
28         $(CP) $(HOST_BUILD_DIR)/src/upx.out $(STAGING_DIR_HOST)/bin/upx
29 endef
30
31 define Host/Clean
32         rm -f $(STAGING_DIR_HOST)/bin/upx
33 endef
34
35 $(eval $(call HostBuild))