Add 'libcec-git/' from commit '9981270eb60521d5aa6d15a65b4cebe1fe1e0a16'
git-subtree-dir: libcec-git git-subtree-mainline:5edaff4c52
git-subtree-split:9981270eb6
This commit is contained in:
commit
5fa28ccdda
2 changed files with 64 additions and 0 deletions
24
libcec-git/.SRCINFO
Normal file
24
libcec-git/.SRCINFO
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
pkgbase = libcec-git
|
||||||
|
pkgdesc = Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter
|
||||||
|
pkgver = 4.0.0.3.r0.g209884d
|
||||||
|
pkgrel = 1
|
||||||
|
epoch = 1
|
||||||
|
url = https://github.com/Pulse-Eight/libcec
|
||||||
|
arch = i686
|
||||||
|
arch = x86_64
|
||||||
|
license = GPL
|
||||||
|
makedepends = git
|
||||||
|
makedepends = p8-platform>=2.0
|
||||||
|
depends = udev>=151
|
||||||
|
depends = lockdev
|
||||||
|
depends = p8-platform>=2.0
|
||||||
|
depends = libxrandr
|
||||||
|
depends = python
|
||||||
|
provides = libcec
|
||||||
|
conflicts = libcec
|
||||||
|
options = !libtool
|
||||||
|
source = libcec::git+https://github.com/Pulse-Eight/libcec.git
|
||||||
|
md5sums = SKIP
|
||||||
|
|
||||||
|
pkgname = libcec-git
|
||||||
|
|
40
libcec-git/PKGBUILD
Normal file
40
libcec-git/PKGBUILD
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
|
||||||
|
|
||||||
|
pkgname=libcec-git
|
||||||
|
epoch=1
|
||||||
|
pkgver=4.0.0.3.r0.g209884d
|
||||||
|
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' 'p8-platform>=2.0')
|
||||||
|
depends=('udev>=151' 'lockdev' 'p8-platform>=2.0' 'libxrandr' 'python')
|
||||||
|
provides=('libcec')
|
||||||
|
conflicts=('libcec')
|
||||||
|
options=('!libtool')
|
||||||
|
source=('libcec::git+https://github.com/Pulse-Eight/libcec.git')
|
||||||
|
md5sums=('SKIP')
|
||||||
|
|
||||||
|
pkgver() {
|
||||||
|
cd "$srcdir"/libcec
|
||||||
|
git describe --long --tags | sed 's!^libcec-!!;s!\([^-]*-g\)!r\1!;s!-!.!g'
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "$srcdir"/libcec
|
||||||
|
cmake . \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DBUILD_SHARED_LIBS=1 \
|
||||||
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
|
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
|
||||||
|
-DCMAKE_INSTALL_LIBDIR_NOARCH=/usr/lib
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "$srcdir"/libcec
|
||||||
|
make DESTDIR="$pkgdir/" install
|
||||||
|
}
|
||||||
|
|
||||||
|
# vim:set ts=2 sw=2 et:
|
Loading…
Reference in a new issue