core/libiec61883/PKGBUILD
2016-01-19 23:19:39 +01:00

24 lines
524 B
Bash

pkgname=libiec61883
pkgver=1.2.0
pkgrel=4
pkgdesc="A higher level API for streaming DV, MPEG-2 and audio over Linux IEEE 1394"
arch=('x86_64')
url="http://www.linux1394.org/"
license=('LGPL')
depends=('libraw1394')
source=("http://www.kernel.org/pub/linux/libs/ieee1394/${pkgname}-${pkgver}.tar.xz")
md5sums=('ed91bc1727fac8e019402fc3724a283d')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}