OpenWrt – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | # |
2 | # Copyright (C) 2006 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:=lzma-old |
||
10 | PKG_VERSION:=4.32 |
||
11 | |||
12 | PKG_SOURCE:=lzma-$(PKG_VERSION).tar.bz2 |
||
13 | PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/ |
||
14 | PKG_HASH:=49053e4bb5e0646a841d250d9cb81f7714f5fff04a133216c4748163567acc3d |
||
15 | |||
16 | HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/lzma-$(PKG_VERSION) |
||
17 | |||
18 | include $(INCLUDE_DIR)/host-build.mk |
||
19 | |||
20 | LIB_DIR=$(HOST_BUILD_DIR)/C/7zip/Compress/LZMA_Lib |
||
21 | ALONE_DIR=$(HOST_BUILD_DIR)/C/7zip/Compress/LZMA_Alone |
||
22 | |||
23 | define Host/Compile |
||
24 | +$(HOST_MAKE_VARS) \ |
||
25 | $(MAKE) -C $(LIB_DIR) |
||
26 | +$(HOST_MAKE_VARS) \ |
||
27 | $(MAKE) -f makefile.gcc -C $(ALONE_DIR) |
||
28 | endef |
||
29 | |||
30 | define Host/Install |
||
31 | $(INSTALL_DATA) $(LIB_DIR)/liblzma.a $(STAGING_DIR_HOST)/lib/liblzma-old.a |
||
32 | endef |
||
33 | |||
34 | define Host/Clean |
||
35 | rm -f $(STAGING_DIR_HOST)/lib/liblzma-old.a |
||
36 | endef |
||
37 | |||
38 | $(eval $(call HostBuild)) |