aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLars Op den Kamp <lars@opdenkamp.eu>2015-05-03 22:01:21 +0200
committerLars Op den Kamp <lars@opdenkamp.eu>2015-05-03 22:01:21 +0200
commitbe8f33d1468a295612b914eca8b59aa87cb67e8d (patch)
treee9e049a2247006fdde84bb307b98629e80456bb7 /lib
parentf74f8c9803f54873fe31410c859d992d61f5a251 (diff)
[cec] bump to libCEC 3.0.0
Diffstat (limited to 'lib')
-rw-r--r--lib/libcec/Makefile54
1 files changed, 0 insertions, 54 deletions
diff --git a/lib/libcec/Makefile b/lib/libcec/Makefile
deleted file mode 100644
index 262b0d5992..0000000000
--- a/lib/libcec/Makefile
+++ /dev/null
@@ -1,54 +0,0 @@
-# Download and build libCEC
-#
-# Usage:
-# make
-# sudo make install
-# make clean
-
-# lib name, version
-LIBNAME=libcec
-VERSION=2.1.4
-SOURCE=$(LIBNAME)-$(VERSION)-2
-
-# download location and format
-BASE_URL=http://mirrors.xbmc.org/build-deps/darwin-libs
-ARCHIVE=$(SOURCE).tar.gz
-TARBALLS_LOCATION=.
-RETRIEVE_TOOL=/usr/bin/curl
-RETRIEVE_TOOL_FLAGS=-Ls --create-dirs --output $(TARBALLS_LOCATION)/$(ARCHIVE)
-ARCHIVE_TOOL=tar
-ARCHIVE_TOOL_FLAGS=xf
-
-PREFIX ?= /usr/local
-LIBCEC_CONFIGOPTS ?= --prefix=$(PREFIX)
-
-# configuration settings
-CONFIGURE=./configure CFLAGS=-D_FILE_OFFSET_BITS=64 $(LIBCEC_CONFIGOPTS)
-
-SO_NAME=$(LIBNAME)/.libs/$(LIBNAME).so
-
-all: $(SO_NAME)
-
-$(TARBALLS_LOCATION)/$(ARCHIVE):
- $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE)
-
-$(LIBNAME): $(TARBALLS_LOCATION)/$(ARCHIVE)
- rm -rf $(LIBNAME)
- $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE)
- echo $(LIBNAME) > .gitignore
- cd $(SOURCE); autoreconf -vif
- cd $(SOURCE); $(CONFIGURE)
-
-$(SO_NAME): $(LIBNAME)
- make -j 1 -C $(SOURCE)
-
-install:
- make -C $(SOURCE) install
- ldconfig
-
-clean:
- rm -rf $(SOURCE)
-
-distclean::
- rm -rf $(SOURCE)
-