blob: b521c14551c34f061a738bf2299783701a311707 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Download and build libCEC
#
# Usage:
# make
# sudo make install
# make clean
# lib name, version
LIBNAME=libcec
VERSION=1.8.1
SOURCE=$(LIBNAME)-$(VERSION)
# 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 $(LIBNAME); autoreconf -vif
cd $(LIBNAME); $(CONFIGURE)
$(SO_NAME): $(LIBNAME)
make -j 1 -C $(LIBNAME)
install:
make -C $(LIBNAME) install
ldconfig
clean:
rm -rf $(LIBNAME)
distclean::
rm -rf $(LIBNAME)
|