2012-01-26 01:41:13 +01:00
|
|
|
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
|
|
|
|
|
|
|
|
pkgname=libcec-git
|
2013-04-05 16:35:25 +02:00
|
|
|
epoch=1
|
2016-12-01 18:05:46 +01:00
|
|
|
pkgver=4.0.0.3.r0.g209884d
|
2012-01-26 01:41:13 +01:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="https://github.com/Pulse-Eight/libcec"
|
|
|
|
license=('GPL')
|
2019-03-28 10:19:11 +01:00
|
|
|
makedepends=('git' 'p8-platform>=2.0' 'cmake')
|
2016-09-06 13:23:15 +02:00
|
|
|
depends=('udev>=151' 'lockdev' 'p8-platform>=2.0' 'libxrandr' 'python')
|
2012-01-26 01:41:13 +01:00
|
|
|
provides=('libcec')
|
|
|
|
conflicts=('libcec')
|
|
|
|
options=('!libtool')
|
2013-04-05 16:35:25 +02:00
|
|
|
source=('libcec::git+https://github.com/Pulse-Eight/libcec.git')
|
|
|
|
md5sums=('SKIP')
|
2012-01-26 01:41:13 +01:00
|
|
|
|
2013-04-05 16:35:25 +02:00
|
|
|
pkgver() {
|
|
|
|
cd "$srcdir"/libcec
|
2016-12-01 18:05:46 +01:00
|
|
|
git describe --long --tags | sed 's!^libcec-!!;s!\([^-]*-g\)!r\1!;s!-!.!g'
|
2013-04-05 16:35:25 +02:00
|
|
|
}
|
2012-01-26 01:41:13 +01:00
|
|
|
|
|
|
|
build() {
|
2013-04-05 16:35:25 +02:00
|
|
|
cd "$srcdir"/libcec
|
2015-04-26 13:37:59 +02:00
|
|
|
cmake . \
|
2015-05-18 13:54:07 +02:00
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DBUILD_SHARED_LIBS=1 \
|
2015-04-26 13:37:59 +02:00
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
|
|
|
|
-DCMAKE_INSTALL_LIBDIR_NOARCH=/usr/lib
|
2012-01-26 01:41:13 +01:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2013-04-05 16:35:25 +02:00
|
|
|
cd "$srcdir"/libcec
|
2012-01-26 01:41:13 +01:00
|
|
|
make DESTDIR="$pkgdir/" install
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 et:
|