PKGBUILDs/alarm/libcec-cubox/PKGBUILD

38 lines
1,012 B
Bash
Raw Normal View History

2012-10-19 20:54:09 +00:00
# Contributor: tomasgroth at yahoo.dk
buildarch=4
pkgname="libcec-cubox"
2012-12-02 23:25:16 +00:00
pkgver=2.0.4
2012-10-19 20:54:09 +00:00
pkgrel=1
pkgdesc="Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter with support for cubox"
arch=('armv7h')
url="https://github.com/Pulse-Eight/libcec"
license=('GPL')
depends=('udev' 'lockdev')
makedepends=('linux-headers-cubox')
conflicts=('libcec')
provides=('libcec')
2012-12-02 23:25:16 +00:00
source=("libcec-${pkgver}.tar.gz::https://github.com/Pulse-Eight/libcec/tarball/libcec-${pkgver}")
sha256sums=('652f8bddf8629eb4d14c93bc97efbeb7406482f69626302c8489df8e1fd8431f')
_srcfolder=Pulse-Eight-libcec-178d498
2012-10-19 20:54:09 +00:00
options=(!libtool)
build() {
mv "$_srcfolder" "$pkgname-$pkgver"
2012-10-25 22:57:33 +00:00
_kernel_release="$(pacman -Q linux-headers-cubox | grep -Eo "[^\ ]+$")-ARCH+"
2012-10-19 20:54:09 +00:00
cd "$pkgname-$pkgver"
autoreconf -vif
2012-10-21 04:00:38 +00:00
./configure --prefix=/usr --enable-cubox --enable-shared=lockdev \
2012-10-19 20:54:09 +00:00
--with-tda995x-toolkit-path="/usr/src/linux-${_kernel_release}/include/nxp_hdmi"
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}