updated on Sun Jan 22 08:00:21 UTC 2012
[aur-mirror.git] / dvswitch / PKGBUILD
blobc504d52c80e95a22b5718b40e519e7f808d6d8b9
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: James Harrison <james@talkunafraid.co.uk>
7 pkgname=dvswitch
8 pkgver=0.8.3.6
9 pkgrel=2
10 epoch=
11 pkgdesc="A DV stream vision mixer and associated utilities"
12 arch=('i686' 'x86_64')
13 url="http://dvswitch.alioth.debian.org/wiki/"
14 license=('GPL')
15 groups=('multimedia')
16 depends=('boost' 'ffmpeg')
17 makedepends=('cmake' 'gtkmm')
18 checkdepends=()
19 optdepends=('dvgrab: dv capture from firewire devices')
20 provides=()
21 conflicts=()
22 replaces=()
23 backup=()
24 options=()
25 install=
26 changelog=
27 source=('https://alioth.debian.org/frs/download.php/3615/dvswitch-0.8.3.6.tar.gz')
28 noextract=()
29 md5sums=('b88e2d5f6e83db6e7d3ee7472d09a2f2')
31 build() {
32   cd "$srcdir/$pkgname-$pkgver"
33   mkdir build && cd build
34   cmake ../ -DCMAKE_INSTALL_PREFIX=/usr
35   make
39 package() {
40   cd "$srcdir/$pkgname-$pkgver/build"
41   make DESTDIR="$pkgdir/" install
44 # vim:set ts=2 sw=2 et: