updated on Thu Jan 26 12:02:26 UTC 2012
[aur-mirror.git] / swfdec-mozilla-git / PKGBUILD
blob15b9bd82280e2f7e519829b2d1d1d2e4456f1aa5
1 # Contributor: Jesse Jaara <jesse.jaara@gmail.com>
3 pkgname=swfdec-mozilla-git
4 pkgver=20090712
5 pkgrel=1
6 pkgdesc="Free library for decoding and rendering Flash animations"
7 arch=(i686 x86_64)
8 url="http://swfdec.freedesktop.org"
9 license=('LGPL')
10 depends=('swfdec-git')
11 makedepends=('git')
12 provides=('swfdec-mozilla')
13 conflicts=('swfdec-mozilla' 'swfdec-mozilla-devel' 'flashplugin')
14 md5sums=()
16 _gitroot="git://anongit.freedesktop.org/git/swfdec/swfdec-mozilla"
17 _gitname="swfdec-mozilla"
19 build() {
20   cd "$srcdir"
21   msg "Connecting to GIT server...."
23   if [ -d $_gitname ] ; then
24     cd $_gitname && git pull origin
25     msg "The local files are updated."
26   else
27     git clone $_gitroot
28   fi
30   msg "GIT checkout done or server timeout"
31   msg "Starting make..."
33   rm -rf "$srcdir/$_gitname-build"
34   git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
35   cd "$srcdir/$_gitname-build"
37   #
38   # BUILD HERE
39   #
41   ./autogen.sh
42   ./configure --prefix=/usr --with-plugin-dir=/usr/lib/mozilla/plugins/
43   make || return 1
44   make DESTDIR="$pkgdir/" install
45