diff options
author | James <> | 2013-03-17 12:16:37 +0000 |
---|---|---|
committer | James <> | 2013-03-17 12:16:37 +0000 |
commit | 27b76ab0671089c47506615a796a261e993896a7 (patch) | |
tree | 61213d67e7fa87b20356b23798558e2c4212c42f /tools/lzma/.svn | |
download | trunk-36060-master.tar.gz trunk-36060-master.tar.bz2 trunk-36060-master.zip |
Diffstat (limited to 'tools/lzma/.svn')
-rw-r--r-- | tools/lzma/.svn/entries | 65 | ||||
-rw-r--r-- | tools/lzma/.svn/text-base/Makefile.svn-base | 36 |
2 files changed, 101 insertions, 0 deletions
diff --git a/tools/lzma/.svn/entries b/tools/lzma/.svn/entries new file mode 100644 index 0000000..fd75d2c --- /dev/null +++ b/tools/lzma/.svn/entries @@ -0,0 +1,65 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/tools/lzma +svn://svn.openwrt.org/openwrt + + + +2012-08-12T13:27:49.032927Z +33148 +jow + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +patches +dir + +Makefile +file + + + + +2013-03-17T12:13:22.000000Z +ffaa6622e4f1392e66b0b40c2ac4f13a +2012-08-12T13:27:49.032927Z +33148 +jow + + + + + + + + + + + + + + + + + + + + + +952 + diff --git a/tools/lzma/.svn/text-base/Makefile.svn-base b/tools/lzma/.svn/text-base/Makefile.svn-base new file mode 100644 index 0000000..6e01051 --- /dev/null +++ b/tools/lzma/.svn/text-base/Makefile.svn-base @@ -0,0 +1,36 @@ +# +# 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 +ALONE_DIR=$(HOST_BUILD_DIR)/CPP/7zip/Compress/LZMA_Alone + +define Host/Compile + $(MAKE) -C $(UTIL_DIR) -f makefile.gcc LDFLAGS="$(HOST_STATIC_LINKING)" + $(MAKE) -C $(ALONE_DIR) -f makefile.gcc LDFLAGS="$(HOST_STATIC_LINKING)" +endef + +define Host/Install + $(INSTALL_DIR) $(STAGING_DIR_HOST)/bin + $(INSTALL_BIN) $(HOST_BUILD_DIR)/CPP/7zip/Compress/LZMA_Alone/lzma_alone $(STAGING_DIR_HOST)/bin/lzma +endef + +define Host/Clean +endef + +$(eval $(call HostBuild)) |