Created
July 6, 2012 07:12
-
-
Save coderbyheart/3058574 to your computer and use it in GitHub Desktop.
guvcview PKGBUILD w/ added intltool dependency
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Maxwell Pray a.k.a. Synthead <[email protected]> | |
pkgname=guvcview | |
pkgver=1.6.0 | |
pkgrel=1 | |
pkgdesc="A video viewer and capturer for the linux uvc driver" | |
arch=('i686' 'x86_64') | |
url="http://guvcview.sourceforge.net/" | |
license=('GPL') | |
depends=('portaudio' 'gtk3' 'ffmpeg' 'v4l-utils' 'udev' 'intltool') | |
makedepends=('pkg-config') | |
conflicts=('guvcview-svn') | |
optdepends=('pulseaudio: for PulseAudio support') | |
source=("http://downloads.sourceforge.net/project/$pkgname/source/$pkgname-src-$pkgver.tar.gz") | |
md5sums=('a8c9b1f1267fbf9982266b5f36d87b2b') | |
build() { | |
cd "$srcdir/$pkgname-src-$pkgver" | |
./configure --prefix=/usr | |
make | |
} | |
package() { | |
cd "$srcdir/$pkgname-src-$pkgver" | |
make DESTDIR="$pkgdir" install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment