cec-client.ilk
cec-client.pdb
+build
+
project/Debug/
project/ipch/
project/libcec.sdf
/dpinst-x86.exe
-/dpinst-amd64.exe
\ No newline at end of file
+/dpinst-amd64.exe
Source: libcec
Section: video
Priority: extra
-Maintainer: Lars Op den Kamp <info@pulse-eight.com>
-Build-Depends: debhelper (>= 7), libudev-dev, mime-support,
- locales, gawk, autotools-dev, autoconf, automake,
+Maintainer: Lars Op den Kamp <lars.opdenkamp@pulse-eight.com>
+Build-Depends: debhelper (>= 7), libudev-dev, mime-support, locales, gawk, autotools-dev, autoconf, automake, pkg-config
Standards-Version: 3.8.3
Homepage: http://www.pulse-eight.net/
Package: libcec
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: CEC interface library
- CEC interface library.
+Description: Pulse-Eight CEC adapter control library
+ With this library you can access your Pulse-Eight CEC adapter.
+
+Package: libcec-dev
+Priority: optional
+Section: libdevel
+Architecture: any
+Depends: libcec (= ${Source-Version}), ${shlibs:Depends}, ${misc:Depends}
+Description: Pulse-Eight CEC adapter control library (development files)
+ With libcec you can access your Pulse-Eight CEC adapter.
+ .
+ This package provides a static library and C/CPP header files.
#!/usr/bin/make -f
-# -*- makefile -*-
-# Sample debian/rules that uses debhelper.
-# This file was originally written by Joey Hess and Craig Small.
-# As a special exception, when this file is copied by dh-make into a
-# dh-make output file, you may use that output file without restriction.
-# This special exception was added by Craig Small in version 0.37 of dh-make.
+# debian package for libcec
+# Copyright Pulse-Eight 2011
# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1
+DEB_BUILD_GNU_TYPE := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
+ confflags += --build=$(DEB_HOST_GNU_TYPE)
+else
+ confflags += --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)
+endif
+
%:
dh $@
+
+override_dh_clean:
+ rm -rf build
+ rm -rf debian/libcec
+ rm -rf debian/libcec-dev
+ dh_clean
+
+override_dh_auto_clean:
+ dh_clean
+
+override_dh_auto_configure:
+ [ -d build ] || mkdir build
+ cd build && ../configure $(confflags) CFLAGS="$(CFLAGS)" \
+ LDFLAGS="$(LDFLAGS)" --prefix=/usr
+
+override_dh_auto_build:
+ $(MAKE) -C build
+
+override_dh_install:
+ $(MAKE) -C build DESTDIR=$(CURDIR)/debian/libcec install-exec
+ $(MAKE) -C build DESTDIR=$(CURDIR)/debian/libcec-dev install-data
+ mv -v $(CURDIR)/debian/libcec/usr/lib/*.a $(CURDIR)/debian/libcec-dev/usr/lib/.
+ mv -v $(CURDIR)/debian/libcec/usr/lib/*.la $(CURDIR)/debian/libcec-dev/usr/lib/.
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libcec.pc
-
libcec_la_SOURCES = AdapterCommunication.cpp \
AdapterCommunication.h \
AdapterDetection.cpp \
platform/threads.h
libcec_la_LDFLAGS = @LIBS@ -version-info @VERSION@
-libcec_la_CPPFLAGS = -I../../include
+libcec_la_CPPFLAGS = -I@abs_top_srcdir@/include
cec_client_SOURCES = main.cpp \
../lib/platform/threads.cpp
-cec_client_CPPFLAGS = -I../../include
\ No newline at end of file
+cec_client_CPPFLAGS = -I@abs_top_srcdir@/include
\ No newline at end of file