mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
35 lines
894 B
Bash
35 lines
894 B
Bash
# Contributor: tomasgroth at yahoo.dk
|
|
|
|
buildarch=16
|
|
|
|
pkgname=libcec-rpi
|
|
pkgver=1.9.0
|
|
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=("$pkgname-$pkgver.tar.gz::https://github.com/Pulse-Eight/libcec/tarball/libcec-$pkgver")
|
|
_srcfolder=Pulse-Eight-libcec-217b236
|
|
sha256sums=('93c0c56b446f82ef71499fd88186c7212a92b037cb8a19516140216cc0aae68f')
|
|
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
|
|
}
|
|
|