summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d0880df0eebcd4bcbaee627cd56839617f84b826 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Maintainer: Andrzej Giniewicz <gginiu@gmail.com>
# Contributor: Nils Gey <list@nilsgey.de>
# Author: Thorben Hohn

pkgname=libflashsupport-jack
pkgver=20110801
pkgrel=1
pkgdesc="JACK-audio-connection-kit support for Flash"
arch=('i686' 'x86_64')
url="http://sourceforge.net/users/torbenh/"
license=('GPL')
makedepends=('git')
depends=('openssl' 'jack')
options=('!libtool')
source=()
md5sums=()

_gitroot="git://repo.or.cz/libflashsupport-jack.git"
_gitname="libflashsupport-jack"

build() {
  cd "$srcdir"
  msg "Connecting to GIT server...."

  if [ -d $_gitname ] ; then
    cd $_gitname && git pull origin
    msg "The local files are updated."
  else
    git clone $_gitroot
  fi

  msg "GIT checkout done or server timeout"
  msg "Starting make..."

  rm -rf "$srcdir/$_gitname-build"
  cp -r "$srcdir/$_gitname" "$srcdir/$_gitname-build"
  cd "$srcdir/$_gitname-build"

  ./bootstrap.sh
  ./configure --prefix=/usr
  sed -i 's|#define V4L1|//#define V4L1|' ./flashsupport.c || return 1
  make
}

package() {
 cd "$srcdir/$_gitname-build"

 make DESTDIR=${pkgdir} install
}