mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-27 00:10:29 +00:00
20 lines
557 B
Bash
20 lines
557 B
Bash
![]() |
# $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
|
||
|
}
|