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.
mxe/src/libdvdread.mk

34 lines
1.2 KiB

# This file is part of MXE. See LICENSE.md for licensing information.
PKG := libdvdread
$(PKG)_WEBSITE := https://www.videolan.org/developers/libdvdnav.html
$(PKG)_IGNORE :=
$(PKG)_VERSION := 6.0.1
$(PKG)_CHECKSUM := 28ce4f0063883ca4d37dfd40a2f6685503d679bca7d88d58e04ee8112382d5bd
$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.bz2
$(PKG)_URL := https://download.videolan.org/pub/videolan/$(PKG)/$($(PKG)_VERSION)/$($(PKG)_FILE)
# libdvdread supports libdvdcss either by dynamic loading (dlfcn-win32) or
# directly linking to libdvdcss. We directly link to the library here.
$(PKG)_DEPS := cc libdvdcss
define $(PKG)_UPDATE
$(WGET) -q -O- 'https://download.videolan.org/pub/videolan/libdvdread/' | \
$(SED) -n 's,.*href="\([0-9][^<]*\)/".*,\1,p' | \
grep -v 'alpha\|beta\|rc' | \
$(SORT) -V | \
tail -1
endef
define $(PKG)_BUILD
# build and install the library
cd '$(BUILD_DIR)' && $(SOURCE_DIR)/configure \
$(MXE_CONFIGURE_OPTS) \
--disable-dlfcn \
--with-libdvdcss \
--disable-apidoc
$(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' LDFLAGS=-no-undefined
$(MAKE) -C '$(BUILD_DIR)' -j 1 install LDFLAGS=-no-undefined
endef