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
|
2014-06-20 14:51:12 +02:00
|
|
|
pkgver=2.1.4.4.ga560d24
|
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')
|
|
|
|
makedepends=('git')
|
2013-03-25 13:51:13 +01:00
|
|
|
depends=('udev>=151' 'lockdev')
|
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
|
|
|
|
git describe --tags | sed 's|libcec-||;s|-|.|g'
|
|
|
|
}
|
2012-01-26 01:41:13 +01:00
|
|
|
|
|
|
|
build() {
|
2013-04-05 16:35:25 +02:00
|
|
|
cd "$srcdir"/libcec
|
2012-01-26 01:41:13 +01:00
|
|
|
|
|
|
|
autoreconf -vif
|
|
|
|
./configure --prefix=/usr
|
|
|
|
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:
|