# -*-makefile-*- # # Copyright (C) 2013 by Michael Olbrich # # See CREDITS for details about who has contributed to this project. # # For further information about the PTXdist project and license conditions # see the README file. # # # We provide this package # HOST_PACKAGES-$(PTXCONF_HOST_XZ) += host-xz # # Paths and names # HOST_XZ_VERSION := 5.2.2 HOST_XZ_MD5 := f90c9a0c8b259aee2234c4e0d7fd70af HOST_XZ := xz-$(HOST_XZ_VERSION) HOST_XZ_SUFFIX := tar.bz2 HOST_XZ_URL := http://tukaani.org/xz/$(HOST_XZ).$(HOST_XZ_SUFFIX) HOST_XZ_SOURCE := $(SRCDIR)/$(HOST_XZ).$(HOST_XZ_SUFFIX) HOST_XZ_DIR := $(HOST_BUILDDIR)/$(HOST_XZ) HOST_XZ_LICENSE := public_domain, LGPL-2.1+, GPL-2.0+, GPL-3.0+ HOST_XZ_LICENSE_FILES := \ file://COPYING;md5=c475b6c7dca236740ace4bba553e8e1c \ file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ file://COPYING.GPLv3;md5=d32239bcb673463ab874e80d47fae504 \ file://COPYING.LGPLv2.1;md5=4fbd65380cdd255951079008b364516c # ---------------------------------------------------------------------------- # Prepare # ---------------------------------------------------------------------------- HOST_XZ_DEVPKG := NO # # autoconf # HOST_XZ_CONF_TOOL := autoconf HOST_XZ_CONF_OPT := \ $(PTX_HOST_AUTOCONF) \ --enable-assembler \ --disable-small \ --enable-threads \ --disable-xz \ --disable-xzdec \ --disable-lzmadec \ --disable-lzmainfo \ --disable-lzma-links \ --disable-scripts \ --disable-doc \ --disable-shared \ --enable-static \ --disable-nls \ --disable-rpath \ --disable-werror # vim: syntax=make