mirror of
https://github.com/archlinux/aur.git
synced 2026-02-28 16:18:26 +01:00
Fisrt version of bmdcapture
This commit is contained in:
commit
2a8732ce3b
3 changed files with 41 additions and 0 deletions
15
.SRCINFO
Normal file
15
.SRCINFO
Normal 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
0
.gitignore
vendored
Normal file
26
PKGBUILD
Normal file
26
PKGBUILD
Normal 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:
|
||||
Loading…
Add table
Reference in a new issue