updated on Wed Jan 18 08:00:29 UTC 2012
[aur-mirror.git] / libomxil-bellagio-git / PKGBUILD
blob04988557ed44520ff0df3e26492edf0471834bdb
1 # Maintainer: Joni Lapilainen <joni.lapilainen@gmail.com>
2 pkgname=libomxil-bellagio-git
3 pkgver=20120109
4 pkgrel=1
5 pkgdesc="An opensource implementation of the OpenMAX Integration Layer API"
6 arch=('arm' 'armv7h' 'i686' 'x86_64')
7 url="http://omxil.sourceforge.net"
8 license="LGPL"
9 makedepends=('doxygen')
10 md5sums=()
11 provides=('libomxil-bellagio' 'libomxil-bellagio-git')
13 _gitroot="git://omxil.git.sourceforge.net/gitroot/omxil/omxil"
14 _gitname="omxil"
16 build() {
18  msg "Connecting to GIT server...."
20   if [ -d $startdir/src/$_gitname ] ; then
21   cd $_gitname && git pull origin
22   msg "The local files are updated."
23   else
24   git clone $_gitroot
25   fi
27   msg "GIT checkout done or server timeout"
28   msg "Starting make..."
30 cd $startdir/src/$_gitname
32   autoreconf -i -f || return 1
33   mv configure configure.orig || return 1
34   sed 's/ -Werror//g' configure.orig > configure || return 1
35   chmod +x configure || return 1
36   ./configure --prefix=/usr || return 1
37   make || return 1
38   make DESTDIR=${startdir}/pkg install || return 1