tools: xz: use .bz2 archive
[openwrt/staging/yousong.git] / tools / xz / Makefile
1 #
2 # Copyright (C) 2006-2015 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:=xz
10 PKG_VERSION:=5.2.2
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
13 PKG_SOURCE_URL:=@SF/lzmautils \
14 http://tukaani.org/xz
15 PKG_MD5SUM:=6ff5f57a4b9167155e35e6da8b529de69270efb2b4cf3fbabf41a4ee793840b5
16
17 HOST_BUILD_PARALLEL:=1
18
19 include $(INCLUDE_DIR)/host-build.mk
20
21 HOST_CONFIGURE_ARGS += \
22 --enable-static=yes \
23 --enable-shared=no \
24
25 define Host/Prepare
26 $(call Host/Prepare/Default)
27
28 # FreeBSD portability fix
29 sed -i -e 's|#if defined(HAVE_BYTESWAP_H)|& \&\& !defined(__FreeBSD__)|' \
30 $(HOST_BUILD_DIR)/src/common/tuklib_integer.h
31 endef
32
33 define Host/Install
34 +$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) install xzlinks="unxz xzcat"
35 endef
36
37 $(eval $(call HostBuild))