diff options
author | Lars Op den Kamp <lars@opdenkamp.eu> | 2016-11-11 10:09:36 +0100 |
---|---|---|
committer | Lars Op den Kamp <lars@opdenkamp.eu> | 2016-11-11 10:09:36 +0100 |
commit | cc3ae0339faf2b669bee20cb360c526410910f42 (patch) | |
tree | 4f37b1dba271287690aa82a8c0785a27a638fd98 /tools | |
parent | 59579457e5fa56baae3b3fb2521518ad6fadd14e (diff) |
[cec] bump to libCEC 4.0.0
Diffstat (limited to 'tools')
-rw-r--r-- | tools/depends/target/Makefile | 5 | ||||
-rw-r--r-- | tools/depends/target/libcec/Makefile | 4 | ||||
-rw-r--r-- | tools/depends/target/p8-platform/Makefile | 34 |
3 files changed, 39 insertions, 4 deletions
diff --git a/tools/depends/target/Makefile b/tools/depends/target/Makefile index 9bca1889b1..82b378dfa1 100644 --- a/tools/depends/target/Makefile +++ b/tools/depends/target/Makefile @@ -15,7 +15,7 @@ DEPENDS = \ libamplayer libssh taglib libusb libnfs \ pythonmodule-pil pythonmodule-setuptools \ libxslt ffmpeg platform crossguid \ - libdvdread libdvdnav libdvdcss + libdvdread libdvdnav libdvdcss p8-platform FFMPEG_DEPENDS = gnutls @@ -101,7 +101,8 @@ pythonmodule-setuptools: python27 libsdl2: $(LINUX_SYSTEM_LIBS) libxslt: libgcrypt libxml2 ffmpeg: $(ICONV) $(ZLIB) bzip2 $(FFMPEG_DEPENDS) -libcec: platform +platform: p8-platform +libcec: p8-platform crossguid: $(CROSSGUID_DEPS) libdvdnav: libdvdread libdvdread: $(DVDREAD_DEPS) diff --git a/tools/depends/target/libcec/Makefile b/tools/depends/target/libcec/Makefile index f54af9e7ed..c75b300aeb 100644 --- a/tools/depends/target/libcec/Makefile +++ b/tools/depends/target/libcec/Makefile @@ -3,12 +3,12 @@ DEPS= ../../Makefile.include Makefile # lib name, version LIBNAME=libcec -VERSION_MAJOR=3 +VERSION_MAJOR=4 VERSION_MINOR=0 VERSION_PATCH=0 VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH) -SOURCE=$(LIBNAME)-$(VERSION)-6 +SOURCE=$(LIBNAME)-$(VERSION) ARCHIVE=$(SOURCE).tar.gz LIBDYLIB=$(PLATFORM)/build/src/$(LIBNAME).la diff --git a/tools/depends/target/p8-platform/Makefile b/tools/depends/target/p8-platform/Makefile new file mode 100644 index 0000000000..d5918d7ac5 --- /dev/null +++ b/tools/depends/target/p8-platform/Makefile @@ -0,0 +1,34 @@ +include ../../Makefile.include +DEPS= ../../Makefile.include Makefile + +# lib name, version +LIBNAME=p8-platform +VERSION=2.1.0.1 +SOURCE=$(LIBNAME)-$(VERSION) +ARCHIVE=$(SOURCE).tar.gz + +LIBDYLIB=$(PLATFORM)/build/src/$(LIBNAME).a + +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)/build + cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) + cd $(PLATFORM)/build; $(CMAKE) -DBUILD_SHARED_LIBS=0 -DCMAKE_INSTALL_LIBDIR=$(PREFIX)/lib .. + +$(LIBDYLIB): $(PLATFORM) + $(MAKE) -C $(PLATFORM)/build + +.installed-$(PLATFORM): $(LIBDYLIB) + $(MAKE) -C $(PLATFORM)/build install + touch $@ + +clean: + rm -rf $(PLATFORM) .installed-$(PLATFORM) + +distclean:: + rm -rf $(PLATFORM) .installed-$(PLATFORM) + |