desktop/libcec/PKGBUILD

29 lines
668 B
Bash
Raw Normal View History

2014-01-28 01:30:30 +08:00
#
2015-01-23 05:19:49 +08:00
# Part of chakraos.org
2014-01-28 01:30:30 +08:00
#
# Maintainer: Francesco Marinucci <franzmari[at]chakra-project[dot]it>
pkgname=libcec
2015-01-23 05:19:49 +08:00
pkgver=2.2.0
2014-01-28 01:30:30 +08:00
pkgrel=1
pkgdesc="Pulse-Eight's libcec for the Pulse-Eight USB-CEC adapter"
arch=('x86_64')
url="http://libcec.pulse-eight.com/"
license=('GPL')
depends=('udev' 'lockdev')
source=("$pkgname-$pkgver.tar.gz::https://github.com/Pulse-Eight/$pkgname/archive/$pkgname-$pkgver.tar.gz")
2015-01-23 05:19:49 +08:00
sha256sums=('fd4f47a18d6e0f4b9e6f5831280207ee2b2a5fc2741ae32ae09ad12a8aa52917')
2014-01-28 01:30:30 +08:00
build() {
cd "$pkgname-$pkgname-$pkgver"
autoreconf -vif
./configure --prefix=/usr
make
}
package() {
cd "$pkgname-$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}