updated on Thu Jan 12 08:01:00 UTC 2012
[aur-mirror.git] / libflashsupport-jack / PKGBUILD
bloba35bfb6e03d3ad713f2cf847876e06444138a305
1 # Contributor: Nils Gey <list@nilsgey.de>
2 # Author: Thorben Hohn
4 pkgname=libflashsupport-jack
5 pkgver=20110801
6 pkgrel=1
7 pkgdesc="JACK-audio-connection-kit support for Flash"
8 arch=('i686' 'x86_64')
9 url="http://sourceforge.net/users/torbenh/"
10 license=('GPL')
11 makedepends=('git')
12 depends=('openssl' 'jack')
13 options=('!libtool')
14 source=()
15 md5sums=()
17 _gitroot="git://repo.or.cz/libflashsupport-jack.git"
18 _gitname="libflashsupport-jack"
20 build() {
21   cd "$srcdir"
22   msg "Connecting to GIT server...."
24   if [ -d $_gitname ] ; then
25     cd $_gitname && git pull origin
26     msg "The local files are updated."
27   else
28     git clone $_gitroot
29   fi
31   msg "GIT checkout done or server timeout"
32   msg "Starting make..."
34   rm -rf "$srcdir/$_gitname-build"
35   cp -r "$srcdir/$_gitname" "$srcdir/$_gitname-build"
36   cd "$srcdir/$_gitname-build"
38   #
39   # BUILD HERE
40   #
42  ./bootstrap.sh
43  ./configure --prefix=/usr
44  sed -i 's|#define V4L1|//#define V4L1|' ./flashsupport.c || return 1
45   make || return 1
46  make DESTDIR=${pkgdir} install || return 1
47