summaryrefslogtreecommitdiff
path: root/community/guvcview
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/guvcview
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/guvcview')
-rw-r--r--community/guvcview/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/community/guvcview/PKGBUILD b/community/guvcview/PKGBUILD
new file mode 100644
index 000000000..34e3bb3fd
--- /dev/null
+++ b/community/guvcview/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 94885 2013-08-01 06:55:00Z bpiotrowski $
+# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
+# Contributor: Maxwell Pray a.k.a. Synthead <synthead@gmail.com>
+
+pkgname=guvcview
+pkgver=1.7.1
+pkgrel=2
+pkgdesc="A video viewer and capturer for the linux uvc driver"
+arch=('i686' 'x86_64')
+url="http://guvcview.sourceforge.net/"
+license=('GPL')
+depends=('portaudio' 'ffmpeg' 'gtk3')
+makedepends=('pkg-config' 'intltool')
+optdepends=('pulseaudio: for PulseAudio support')
+options=('!docs')
+source=("http://downloads.sourceforge.net/project/${pkgname}/source/${pkgname}-src-${pkgver}.tar.gz")
+md5sums=('5ca1b9c89d2b9370ee203dcc24efd695')
+
+build() {
+ cd "${srcdir}/${pkgname}-src-${pkgver}"
+
+ ./configure --prefix=/usr \
+ --disable-debian-menu
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-src-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+}