updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / schroedinger-git / PKGBUILD
blob004e187e525fba9ac7ee049cfb91be3d5bb3b355
1 # Maintainer: Nezmer <Nezmer@gmail.com>
2 pkgname=schroedinger-git
3 pkgver=20091227
4 pkgrel=2
5 pkgdesc="An implemenation of the Dirac video codec in ANSI C code (Git snapshots)"
6 arch=('i686' 'x86_64')
7 url="http://www.diracvideo.org/"
8 license=('GPL2' 'LGPL2' 'MPL' 'MIT')
9 depends=('gstreamer0.10-base' 'orc-git')
10 makedepends=('git')
11 provides=('schroedinger')
12 conflicts=('schroedinger')
13 options=(!libtool)
14 source=()
15 md5sums=()
17 _gitroot="git://diracvideo.org/git/schroedinger.git"
18 _gitname="schroedinger"
20 build() {
22   cd "$srcdir"
23   msg "Connecting to the schroedinger git repository..."
25   if [ -d "$srcdir/$_gitname" ] ; then
26   cd $_gitname && git pull origin
27   msg "The local files are updated."
28   else
29   git clone $_gitroot
30   fi
32   msg "GIT checkout done or server timeout"
33   msg "Starting make..."
35   rm -rf "$srcdir/$_gitname-build"
36   cp -r "$srcdir/$_gitname" "$srcdir/$_gitname-build"
37   cd "$srcdir/$_gitname-build/"
39   ./autogen.sh
40   ./configure --prefix=/usr
41   make || return 1
42   make DESTDIR=$pkgdir install
44   install -m644 -D COPYING.MIT $pkgdir/usr/share/licenses/$pkgname/COPYING.MIT