summaryrefslogtreecommitdiff
path: root/testing/xf86-video-v4l/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-13 22:00:22 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-13 22:00:22 -0300
commitb9930cb145be895813f48623c21b12acaf8e1dbf (patch)
treef878c72c58f3add6dcaf4ce56491acb1a01c8862 /testing/xf86-video-v4l/PKGBUILD
parent009cb3e36c303eb4460b20d01fb01522787198d9 (diff)
parent16e845de1bbf76ab48a02bfaa21730f45e6afaaa (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/ccrtp/PKGBUILD community/commoncpp2/PKGBUILD core/ncurses/PKGBUILD core/udev/PKGBUILD multilib/lib32-libjpeg-turbo/PKGBUILD
Diffstat (limited to 'testing/xf86-video-v4l/PKGBUILD')
-rw-r--r--testing/xf86-video-v4l/PKGBUILD36
1 files changed, 36 insertions, 0 deletions
diff --git a/testing/xf86-video-v4l/PKGBUILD b/testing/xf86-video-v4l/PKGBUILD
new file mode 100644
index 000000000..a947504f5
--- /dev/null
+++ b/testing/xf86-video-v4l/PKGBUILD
@@ -0,0 +1,36 @@
+# $Id: PKGBUILD 150083 2012-02-12 09:45:54Z andyrtr $
+#Maintainer: Jan de Groot <jgc@archlinux.org>
+
+pkgname=xf86-video-v4l
+pkgver=0.2.0
+pkgrel=10
+pkgdesc="X.org v4l video driver"
+arch=(i686 x86_64)
+url="http://xorg.freedesktop.org/"
+license=('custom')
+depends=('glibc')
+makedepends=('xorg-server-devel>=1.11.99.903')
+conflicts=('xorg-server<1.11.99.903')
+groups=('xorg-drivers' 'xorg')
+options=('!libtool')
+source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
+ git-fixes.patch
+ LICENSE)
+md5sums=('2251ae2a0a905764941cd7b098e85ad1'
+ 'cdb7113a9564ea9202e847de88440540'
+ '7d4d018f6bbff7e42672d1aabc75c5cf')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ patch -Np1 -i "${srcdir}/git-fixes.patch"
+ autoreconf -fi
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+ install -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/"
+}