diff options
author | Cory Fields <theuni-nospam-@xbmc.org> | 2013-03-08 23:16:23 -0500 |
---|---|---|
committer | Cory Fields <theuni-nospam-@xbmc.org> | 2013-03-11 00:16:02 -0400 |
commit | 592d4c0b147ab05f2822c7ba5f4e9112784b6ce1 (patch) | |
tree | 690a46b49e80cc55c4329d5aebdfea917b0fc800 /tools/depends/target/libbluray | |
parent | cdf099d0f824a787904d828c5573c70bf8489738 (diff) |
depends: add mess of depends
Diffstat (limited to 'tools/depends/target/libbluray')
-rw-r--r-- | tools/depends/target/libbluray/Makefile | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/tools/depends/target/libbluray/Makefile b/tools/depends/target/libbluray/Makefile new file mode 100644 index 0000000000..c4b9ee786b --- /dev/null +++ b/tools/depends/target/libbluray/Makefile @@ -0,0 +1,48 @@ +include ../../Makefile.include +DEPS= ../../Makefile.include Makefile + +# lib name, version +LIBNAME=libbluray +VERSION=0.2.1 +SOURCE=$(LIBNAME)-$(VERSION) +ARCHIVE=$(SOURCE).tar.bz2 + +# configuration settings +CONFIGURE=./configure --prefix=$(PREFIX) --exec-prefix=$(PREFIX) \ + --disable-examples --disable-doxygen-doc + +LIBDYLIB=$(PLATFORM)/src/.libs/libbluray.so.1.0.0 + +all: .installed-$(PLATFORM) + +$(TARBALLS_LOCATION)/$(ARCHIVE): + cd $(TARBALLS_LOCATION); $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE) + +$(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS) + rm -rf $(PLATFORM); mkdir -p $(PLATFORM) + cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) + # libbluray has borked Makefile.am with respect to CFLAGS, remove the offending line + sed -i -e "s|CFLAGS=|#CFLAGS=|" $(PLATFORM)/src/Makefile.am + sed -i -e "s|CFLAGS=|#CFLAGS=|" $(PLATFORM)/src/examples/Makefile.am + cd $(PLATFORM); ./bootstrap + cd $(PLATFORM); $(CONFIGURE) + +$(LIBDYLIB): $(PLATFORM) + $(MAKE) -C $(PLATFORM) + +.installed-$(PLATFORM): $(LIBDYLIB) + $(MAKE) -C $(PLATFORM) install +ifeq ($(OS),android) + rm -f $(PREFIX)/lib/libbluray.la $(PREFIX)/lib/libbluray.so $(PREFIX)/lib/libbluray.so.1 + mv -f $(PREFIX)/lib/libbluray.so.1.0.0 $(PREFIX)/lib/libbluray.so + $(RPL) -e "libbluray.so.1" "libbluray.so\x00\x00" $(PREFIX)/lib/libbluray.so + -$(READELF) --dynamic $(PREFIX)/lib/libbluray.so | grep ibrary +endif + touch $@ + +clean: + $(MAKE) -C $(PLATFORM) clean + rm -f .installed-$(PLATFORM) + +distclean:: + rm -rf $(PLATFORM) .installed-$(PLATFORM) |