2019-03-27 07:50:16 +00:00
|
|
|
#
|
2015-10-30 22:31:09 +00:00
|
|
|
# Copyright (C) 2006-2015 OpenWrt.org
|
2010-12-11 13:20:19 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=xz
|
tools/xz: update to 5.4.4
* liblzma and xzdec can now build against WASI SDK when threading
support is disabled. xz and tests don't build yet.
* CMake:
- Fixed a bug preventing other projects from including liblzma
multiple times using find_package().
- Don't create broken symlinks in Cygwin and MSYS2 unless
supported by the environment. This prevented building for the
default MSYS2 environment. The problem was introduced in
xz 5.4.0.
* Documentation:
- Small improvements to man pages.
- Small improvements and typo fixes for liblzma API
documentation.
* Tests:
- Added a new section to INSTALL to describe basic test usage
and address recent questions about building the tests when
cross compiling.
- Small fixes and improvements to the tests.
* Translations:
- Fixed a mistake that caused one of the error messages to not
be translated. This only affected versions 5.4.2 and 5.4.3.
- Updated the Chinese (simplified), Croatian, Esperanto, German,
Korean, Polish, Romanian, Spanish, Swedish, Ukrainian, and
Vietnamese translations.
- Updated the German, Korean, Romanian, and Ukrainian man page
translations.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2023-08-12 02:06:10 +00:00
|
|
|
PKG_VERSION:=5.4.4
|
2010-12-11 13:20:19 +00:00
|
|
|
|
2016-10-06 10:25:29 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2016-10-04 12:28:54 +00:00
|
|
|
PKG_SOURCE_URL:=@SF/lzmautils \
|
|
|
|
http://tukaani.org/xz
|
tools/xz: update to 5.4.4
* liblzma and xzdec can now build against WASI SDK when threading
support is disabled. xz and tests don't build yet.
* CMake:
- Fixed a bug preventing other projects from including liblzma
multiple times using find_package().
- Don't create broken symlinks in Cygwin and MSYS2 unless
supported by the environment. This prevented building for the
default MSYS2 environment. The problem was introduced in
xz 5.4.0.
* Documentation:
- Small improvements to man pages.
- Small improvements and typo fixes for liblzma API
documentation.
* Tests:
- Added a new section to INSTALL to describe basic test usage
and address recent questions about building the tests when
cross compiling.
- Small fixes and improvements to the tests.
* Translations:
- Fixed a mistake that caused one of the error messages to not
be translated. This only affected versions 5.4.2 and 5.4.3.
- Updated the Chinese (simplified), Croatian, Esperanto, German,
Korean, Polish, Romanian, Spanish, Swedish, Ukrainian, and
Vietnamese translations.
- Updated the German, Korean, Romanian, and Ukrainian man page
translations.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2023-08-12 02:06:10 +00:00
|
|
|
PKG_HASH:=0b6fcde1ac38e90433a2556f500c065950b9bcd2d602006efc334782bdfe6296
|
2018-10-15 20:58:30 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:tukaani:xz
|
2010-12-11 13:20:19 +00:00
|
|
|
|
2012-09-15 14:17:40 +00:00
|
|
|
HOST_BUILD_PARALLEL:=1
|
|
|
|
|
2010-12-11 13:20:19 +00:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
|
2016-10-06 13:25:12 +00:00
|
|
|
HOSTCC := $(HOSTCC_NOCACHE)
|
|
|
|
HOSTCXX := $(HOSTCXX_NOCACHE)
|
|
|
|
|
2015-09-14 14:03:21 +00:00
|
|
|
HOST_CONFIGURE_ARGS += \
|
|
|
|
--enable-static=yes \
|
|
|
|
--enable-shared=no \
|
2019-03-27 07:50:16 +00:00
|
|
|
--disable-doc \
|
2020-04-05 18:44:02 +00:00
|
|
|
--disable-nls \
|
2019-03-27 07:50:16 +00:00
|
|
|
--with-pic
|
2016-10-06 10:25:29 +00:00
|
|
|
|
2010-12-11 21:29:53 +00:00
|
|
|
define Host/Install
|
2015-02-06 00:00:43 +00:00
|
|
|
+$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) install xzlinks="unxz xzcat"
|
2010-12-11 21:29:53 +00:00
|
|
|
endef
|
|
|
|
|
2022-09-28 08:23:56 +00:00
|
|
|
define Host/Uninstall
|
|
|
|
-$(call Host/Compile/Default,uninstall)
|
|
|
|
endef
|
|
|
|
|
2010-12-11 13:20:19 +00:00
|
|
|
$(eval $(call HostBuild))
|