1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-02-02 21:21:05 +02:00
florian 6b09a38a1e [tools] install the new lzma version (4.65) in staging_dir/host as lzma-new
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16017 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-05-23 19:16:05 +00:00

37 lines
925 B
Makefile

#
# Copyright (C) 2006 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:=lzma
PKG_VERSION:=4.65
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/
PKG_MD5SUM:=434e51a018b4c8ef377bf81520a53af0
HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-$(PKG_VERSION)
include $(INCLUDE_DIR)/host-build.mk
UTIL_DIR=$(HOST_BUILD_DIR)/C/LzmaUtil
define Host/Compile
$(MAKE) -C $(UTIL_DIR) -f makefile.gcc
endef
define Host/Install
$(INSTALL_DIR) $(STAGING_DIR_HOST)/lib $(STAGING_DIR_HOST)/include $(STAGING_DIR_HOST)/bin
$(CP) $(HOST_BUILD_DIR)/C/*.h $(STAGING_DIR_HOST)/include/
$(CP) $(UTIL_DIR)/liblzma.a $(STAGING_DIR_HOST)/lib/
$(CP) $(HOST_BUILD_DIR)/C/LzmaUtil/lzma $(STAGING_DIR_HOST)/bin/lzma-new
endef
define Host/Clean
endef
$(eval $(call HostBuild))