Commit 5f0ed1bb authored by Rafaël Carré's avatar Rafaël Carré

contrib: bluray: use bluray rather than libbluray

it's confusing enough to cause typos (sum-bluray instead of sum-libbluray)
and break make fetch
parent 393b363f
# LIBBLURAY # LIBBLURAY
ifdef BUILD_DISCS ifdef BUILD_DISCS
PKGS += libbluray PKGS += bluray
endif endif
ifeq ($(call need_pkg,"libbluray >= 0.2.1"),) ifeq ($(call need_pkg,"libbluray >= 0.2.1"),)
PKGS_FOUND += libbluray PKGS_FOUND += bluray
endif endif
BLURAY_VERSION := 0.2.1 BLURAY_VERSION := 0.2.1
BLURAY_URL := http://ftp.videolan.org/pub/videolan/libbluray/0.2.1/libbluray-0.2.1.tar.bz2 BLURAY_URL := http://ftp.videolan.org/pub/videolan/libbluray/$(BLURAY_VERSION)/libbluray-$(BLURAY_VERSION).tar.bz2
$(TARBALLS)/libbluray-0.2.1.tar.bz2: $(TARBALLS)/libbluray-$(BLURAY_VERSION).tar.bz2:
$(call download,$(BLURAY_URL)) $(call download,$(BLURAY_URL))
.sum-bluray: libbluray-0.2.1.tar.bz2 .sum-bluray: libbluray-$(BLURAY_VERSION).tar.bz2
libbluray: libbluray-0.2.1.tar.bz2 .sum-bluray bluray: bluray-$(BLURAY_VERSION).tar.bz2 .sum-bluray
$(UNPACK) $(UNPACK)
$(APPLY) $(SRC)/bluray/pkg-static.patch $(APPLY) $(SRC)/bluray/pkg-static.patch
$(MOVE) $(MOVE)
.libbluray: libbluray .bluray: bluray
cd $< && ./bootstrap cd $< && ./bootstrap
cd $< && $(HOSTVARS) ./configure --disable-examples --disable-debug --disable-libxml2 $(HOSTCONF) cd $< && $(HOSTVARS) ./configure --disable-examples --disable-debug --disable-libxml2 $(HOSTCONF)
cd $< && $(MAKE) install cd $< && $(MAKE) install
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment