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.
34 lines
891 B
34 lines
891 B
################################################################################
|
|
#
|
|
# libbluray
|
|
#
|
|
################################################################################
|
|
|
|
LIBBLURAY_VERSION = 1.3.1
|
|
LIBBLURAY_DIR = libbluray-$(LIBBLURAY_VERSION)
|
|
LIBBLURAY_SOURCE = libbluray-$(LIBBLURAY_VERSION).tar.bz2
|
|
LIBBLURAY_SITE = http://download.videolan.org/pub/videolan/libbluray/$(LIBBLURAY_VERSION)
|
|
|
|
LIBBLURAY_DEPENDENCIES = freetype
|
|
ifeq ($(BOXSERIES),hd2)
|
|
LIBBLURAY_DEPENDENCIES += libaacs libbdplus
|
|
endif
|
|
|
|
LIBBLURAY_CONF_OPTS = \
|
|
--enable-shared \
|
|
--disable-static \
|
|
--disable-extra-warnings \
|
|
--disable-examples \
|
|
--disable-bdjava-jar \
|
|
--with-freetype \
|
|
--without-libxml2 \
|
|
--without-fontconfig
|
|
|
|
define LIBBLURAY_BOOTSTRAP
|
|
$(CHDIR)/$($(PKG)_DIR); \
|
|
./bootstrap
|
|
endef
|
|
LIBBLURAY_POST_PATCH_HOOKS += LIBBLURAY_BOOTSTRAP
|
|
|
|
libbluray: | $(TARGET_DIR)
|
|
$(call autotools-package)
|
|
|