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.
37 lines
992 B
37 lines
992 B
################################################################################
|
|
#
|
|
# libaacs
|
|
#
|
|
################################################################################
|
|
|
|
LIBAACS_VERSION = 0.11.1
|
|
LIBAACS_DIR = libaacs-$(LIBAACS_VERSION)
|
|
LIBAACS_SOURCE = libaacs-$(LIBAACS_VERSION).tar.bz2
|
|
LIBAACS_SITE = ftp://ftp.videolan.org/pub/videolan/libaacs/$(LIBAACS_VERSION)
|
|
|
|
LIBAACS_DEPENDENCIES = libgcrypt
|
|
|
|
LIBAACS_CONF_OPTS = \
|
|
--disable-werror \
|
|
--disable-extra-warnings \
|
|
--disable-optimizations \
|
|
--disable-examples \
|
|
--disable-debug \
|
|
--with-gnu-ld \
|
|
--enable-shared \
|
|
--disable-static
|
|
|
|
define LIBAACS_BOOTSTRAP
|
|
$(CHDIR)/$($(PKG)_DIR); \
|
|
./bootstrap
|
|
endef
|
|
LIBAACS_POST_PATCH_HOOKS += LIBAACS_BOOTSTRAP
|
|
|
|
define LIBAACS_INSTALL_FILES
|
|
$(INSTALL) -d $(TARGET_DIR)/.cache/aacs/vuk
|
|
$(INSTALL_DATA) -D $(PKG_FILES_DIR)/KEYDB.cfg $(TARGET_DIR)/.config/aacs/KEYDB.cfg
|
|
endef
|
|
LIBAACS_TARGET_FINALIZE_HOOKS += LIBAACS_INSTALL_FILES
|
|
|
|
libaacs: | $(TARGET_DIR)
|
|
$(call autotools-package)
|
|
|