mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 20:50:20 +02:00
f227ba2d68
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16014 3c298f89-4303-0410-b956-a3cf2f4a3e73
40 lines
944 B
Makefile
40 lines
944 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-old
|
|
PKG_VERSION:=4.32
|
|
|
|
PKG_SOURCE:=lzma-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/
|
|
PKG_MD5SUM:=5587d6ac230ad1903d504fc3253f0e42
|
|
|
|
HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/lzma-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
LIB_DIR=$(HOST_BUILD_DIR)/C/7zip/Compress/LZMA_Lib
|
|
ALONE_DIR=$(HOST_BUILD_DIR)/C/7zip/Compress/LZMA_Alone
|
|
|
|
define Host/Compile
|
|
$(MAKE) -C $(LIB_DIR)
|
|
$(MAKE) -f makefile.gcc -C $(ALONE_DIR)
|
|
endef
|
|
|
|
define Host/Install
|
|
$(INSTALL_DATA) $(LIB_DIR)/liblzma.a $(STAGING_DIR_HOST)/lib/liblzma-old.a
|
|
$(INSTALL_BIN) $(ALONE_DIR)/lzma $(STAGING_DIR_HOST)/bin/
|
|
endef
|
|
|
|
define Host/Clean
|
|
rm -f \
|
|
$(STAGING_DIR_HOST)/lib/liblzma-old.a \
|
|
$(STAGING_DIR_HOST)/bin/lzma
|
|
endef
|
|
|
|
$(eval $(call HostBuild))
|