package/opkg: add zstd support
Signed-off-by: Adam Duskett <adam.duskett@amarulasolutions.com> [yann.morin.1998@free.fr: drop option, use package as condition] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
parent
b3dd463442
commit
6d55ba0f8a
@ -10,7 +10,7 @@ OPKG_DEPENDENCIES = host-pkgconf libarchive
|
||||
OPKG_LICENSE = GPL-2.0+
|
||||
OPKG_LICENSE_FILES = COPYING
|
||||
OPKG_INSTALL_STAGING = YES
|
||||
OPKG_CONF_OPTS = --disable-curl --disable-zstd
|
||||
OPKG_CONF_OPTS = --disable-curl
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPKG_GPG_SIGN),y)
|
||||
OPKG_CONF_OPTS += --enable-gpg
|
||||
@ -22,6 +22,13 @@ else
|
||||
OPKG_CONF_OPTS += --disable-gpg
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZSTD),y)
|
||||
OPKG_DEPENDENCIES += zstd
|
||||
OPKG_CONF_OPTS += --enable-zstd
|
||||
else
|
||||
OPKG_CONF_OPTS += --disable-zstd
|
||||
endif
|
||||
|
||||
# Ensure directory for lockfile exists
|
||||
define OPKG_CREATE_LOCKDIR
|
||||
mkdir -p $(TARGET_DIR)/usr/lib/opkg
|
||||
|
Loading…
Reference in New Issue
Block a user