PKGBUILDs/extra/libv4l/PKGBUILD

20 lines
557 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# $Id: PKGBUILD 47046 2009-07-22 22:55:13Z thomas $
# Maintainer: Thomas Baechler <thomas@archlinux.org>
pkgname=libv4l
pkgver=0.6.0
pkgrel=1
pkgdesc="Userspace library for Video 4 Linux (1 and 2)"
arch=('i686' 'x86_64')
url="http://hansdegoede.livejournal.com/3636.html"
license=('LGPL')
depends=('glibc')
source=(http://people.atrpms.net/~hdegoede/${pkgname}-${pkgver}.tar.gz)
md5sums=('db389fdf02cabd57f289f0faa37f4060')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
make || return 1
make install PREFIX="/usr" DESTDIR="${pkgdir}/" || return 1
}