# This file is part of mingw-cross-env. # See doc/index.html for further information. # libbluray PKG := libbluray $(PKG)_IGNORE := $(PKG)_VERSION := cf9ee59 $(PKG)_CHECKSUM := a436da8886453f1b3a9d22eaeeb7c8f2b4f32bc2 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz $(PKG)_WEBSITE := http://www.videolan.org/developers/libbluray.html $(PKG)_URL := http://git.videolan.org/?p=$(PKG).git;a=snapshot;h=$($(PKG)_VERSION);sf=tgz $(PKG)_FIX_GZIP := yes $(PKG)_DEPS := gcc ... define $(PKG)_UPDATE wget -q -O- 'http://git.videolan.org/?p=libbluray.git;a=shortlog' | \ $(SED) -n 's,.*;h=\([0-9a-f]\{7\}\).*,\1,p' | \ head -1 endef define $(PKG)_BUILD cd '$(1)' && ... cd '$(1)' && ... ... cd '$(1)' && ./configure \ --host='$(TARGET)' \ --disable-shared \ --prefix='$(PREFIX)/$(TARGET)' \ ... $(MAKE) -C '$(1)' -j '$(JOBS)' $(MAKE) -C '$(1)' -j 1 install endef