mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 07:51:59 -09:00
Changelog: https://code.videolan.org/videolan/libaacs/-/blob/0.12.0/ChangeLog Switched URLs to https and source tarball to xz. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
25 lines
757 B
Makefile
25 lines
757 B
Makefile
################################################################################
|
|
#
|
|
# libaacs
|
|
#
|
|
################################################################################
|
|
|
|
LIBAACS_VERSION = 0.12.0
|
|
LIBAACS_SITE = https://download.videolan.org/pub/videolan/libaacs/$(LIBAACS_VERSION)
|
|
LIBAACS_SOURCE = libaacs-$(LIBAACS_VERSION).tar.xz
|
|
LIBAACS_LICENSE = LGPL-2.1+
|
|
LIBAACS_LICENSE_FILES = COPYING
|
|
LIBAACS_INSTALL_STAGING = YES
|
|
LIBAACS_DEPENDENCIES = host-bison host-flex libgcrypt
|
|
LIBAACS_CONF_OPTS = \
|
|
--disable-werror \
|
|
--disable-extra-warnings \
|
|
--disable-optimizations \
|
|
--disable-examples \
|
|
--disable-debug \
|
|
--with-gnu-ld \
|
|
--with-libgcrypt-prefix=$(STAGING_DIR)/usr \
|
|
--with-gpg-error-prefix=$(STAGING_DIR)/usr
|
|
|
|
$(eval $(autotools-package))
|