2006-06-27 08:44:04 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-04-03 00:43:51 +08:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2009-05-23 21:21:43 +08:00
|
|
|
PKG_NAME:=lzma-old
|
2009-02-22 00:20:16 +08:00
|
|
|
PKG_VERSION:=4.32
|
2005-04-03 00:43:51 +08:00
|
|
|
|
2009-05-23 21:21:43 +08:00
|
|
|
PKG_SOURCE:=lzma-$(PKG_VERSION).tar.bz2
|
2009-02-22 00:20:16 +08:00
|
|
|
PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/
|
|
|
|
PKG_MD5SUM:=5587d6ac230ad1903d504fc3253f0e42
|
2005-04-03 00:43:51 +08:00
|
|
|
|
2009-05-23 21:21:43 +08:00
|
|
|
HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/lzma-$(PKG_VERSION)
|
2005-04-03 00:43:51 +08:00
|
|
|
|
2006-06-21 14:19:43 +08:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
2005-04-03 00:43:51 +08:00
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
LIB_DIR=$(HOST_BUILD_DIR)/C/7zip/Compress/LZMA_Lib
|
|
|
|
ALONE_DIR=$(HOST_BUILD_DIR)/C/7zip/Compress/LZMA_Alone
|
2005-04-03 00:43:51 +08:00
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Compile
|
2006-06-21 14:19:43 +08:00
|
|
|
$(MAKE) -C $(LIB_DIR)
|
|
|
|
$(MAKE) -f makefile.gcc -C $(ALONE_DIR)
|
|
|
|
endef
|
2005-04-03 00:43:51 +08:00
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Install
|
2009-05-05 01:04:03 +08:00
|
|
|
$(INSTALL_DATA) $(LIB_DIR)/liblzma.a $(STAGING_DIR_HOST)/lib/liblzma-old.a
|
2006-06-21 14:19:43 +08:00
|
|
|
endef
|
2005-04-03 00:43:51 +08:00
|
|
|
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Clean
|
2011-04-03 09:02:03 +08:00
|
|
|
rm -f $(STAGING_DIR_HOST)/lib/liblzma-old.a
|
2006-06-21 14:19:43 +08:00
|
|
|
endef
|
2005-04-03 00:43:51 +08:00
|
|
|
|
2006-06-21 14:19:43 +08:00
|
|
|
$(eval $(call HostBuild))
|