You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
623 B
28 lines
623 B
################################################################################
|
|
#
|
|
# xz
|
|
#
|
|
################################################################################
|
|
|
|
XZ_VERSION = 5.2.10
|
|
XZ_DIR = xz-$(XZ_VERSION)
|
|
XZ_SOURCE = xz-$(XZ_VERSION).tar.xz
|
|
XZ_SITE = https://tukaani.org/xz
|
|
|
|
XZ_CONF_ENV = \
|
|
ac_cv_prog_cc_c99='-std=gnu99'
|
|
|
|
XZ_CONF_OPTS = \
|
|
--datarootdir=$(REMOVE_datarootdir) \
|
|
--enable-small \
|
|
--enable-assume-ram=4 \
|
|
--disable-assembler \
|
|
--disable-debug \
|
|
--disable-doc \
|
|
--disable-rpath \
|
|
--disable-symbol-versions \
|
|
--disable-werror \
|
|
--with-pic
|
|
|
|
xz: | $(TARGET_DIR)
|
|
$(call autotools-package)
|
|
|