29 lines
1.1 KiB
Makefile
29 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="xz"
|
|
PKG_VERSION="5.2.5"
|
|
PKG_SHA256="5117f930900b341493827d63aa910ff5e011e0b994197c3b71c08a20228a42df"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://tukaani.org/xz/"
|
|
PKG_URL="http://tukaani.org/xz/${PKG_NAME}-${PKG_VERSION}.tar.bz2"
|
|
PKG_DEPENDS_HOST="ccache:host"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="A free general-purpose data compression software with high compression ratio."
|
|
PKG_BUILD_FLAGS="+pic +pic:host"
|
|
|
|
# never build shared or k0p happens when building
|
|
# on fedora due to host selinux/liblzma
|
|
PKG_CONFIGURE_OPTS_HOST="--disable-shared --enable-static \
|
|
--disable-lzmadec \
|
|
--disable-lzmainfo \
|
|
--enable-lzma-links \
|
|
--disable-scripts \
|
|
--disable-nls"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--disable-shared --enable-static"
|
|
|
|
post_makeinstall_target() {
|
|
rm -rf ${INSTALL}
|
|
}
|