mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
35 lines
888 B
Bash
35 lines
888 B
Bash
# Contributor: tomasgroth at yahoo.dk
|
|
|
|
buildarch=16
|
|
|
|
pkgname=libcec-rpi
|
|
pkgver=2.0.4
|
|
pkgrel=1
|
|
pkgdesc="Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter with support for raspberry pi"
|
|
arch=('armv6h')
|
|
url="https://github.com/Pulse-Eight/libcec"
|
|
license=('GPL')
|
|
depends=('udev' 'lockdev' 'raspberrypi-firmware')
|
|
conflicts=('libcec')
|
|
provides=('libcec')
|
|
source=("libcec-2.0.4.tar.gz::https://github.com/Pulse-Eight/libcec/tarball/libcec-2.0.4")
|
|
_srcfolder=Pulse-Eight-libcec-178d498
|
|
sha256sums=('652f8bddf8629eb4d14c93bc97efbeb7406482f69626302c8489df8e1fd8431f')
|
|
options=(!libtool)
|
|
|
|
build() {
|
|
mv "$_srcfolder" "$pkgname-$pkgver"
|
|
|
|
cd "$pkgname-$pkgver"
|
|
autoreconf -vif
|
|
./configure --prefix=/usr --enable-rpi \
|
|
--with-rpi-include-path="/opt/vc/include" \
|
|
--with-rpi-lib-path="/opt/vc/lib"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|