Fisrt version of bmdcapture

This commit is contained in:
Antoine Lubineau 2011-04-01 23:26:58 +02:00
commit 2a8732ce3b
3 changed files with 41 additions and 0 deletions

15
.SRCINFO Normal file
View file

@ -0,0 +1,15 @@
pkgbase = bmdcapture
pkgdesc = BlackMagic Design DeckLink capture utility
pkgver = 0.9.6
pkgrel = 1
url = http://smorgasbork.com/
arch = i686
arch = x86_64
license = GPL
depends = gcc-libs
depends = libgl
source = http://smorgasbork.com/bmdcapture/bmdcapture-0.9.6.tar.gz
md5sums = 4dec7596cfa6c9e7d835e312a6136c8d
pkgname = bmdcapture

0
.gitignore vendored Normal file
View file

26
PKGBUILD Normal file
View file

@ -0,0 +1,26 @@
# Maintainer: Antoine Lubineau <antoine@lubignon.info>
pkgname=bmdcapture
pkgver=0.9.6
pkgrel=1
pkgdesc="BlackMagic Design DeckLink capture utility"
arch=('i686' 'x86_64')
url="http://smorgasbork.com/"
license=('GPL')
depends=('gcc-libs' 'libgl')
source=("http://smorgasbork.com/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('4dec7596cfa6c9e7d835e312a6136c8d')
build() {
cd "$srcdir/$pkgname-$pkgver"
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
install -D -m0755 bmdcapture "$pkgdir/usr/bin/bmdcapture"
}
# vim:set ts=2 sw=2 et: