1 # Maintainer: Joni Lapilainen <joni.lapilainen@gmail.com>
2 pkgname=libomxil-bellagio-git
5 pkgdesc="An opensource implementation of the OpenMAX Integration Layer API"
6 arch=('arm' 'armv7h' 'i686' 'x86_64')
7 url="http://omxil.sourceforge.net"
9 makedepends=('doxygen')
11 provides=('libomxil-bellagio' 'libomxil-bellagio-git')
13 _gitroot="git://omxil.git.sourceforge.net/gitroot/omxil/omxil"
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."
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
38 make DESTDIR=${startdir}/pkg install || return 1