updated on Thu Jan 26 12:02:26 UTC 2012
[aur-mirror.git] / libvalhalla-hg / PKGBUILD
blobe075334e5a8e6f1fcb6a0e97d952e3b938a268f7
1 # Contributor: Uwe Strempel <u.strempel@googlemail.com>
2 pkgname=libvalhalla-hg
3 pkgver=727
4 pkgrel=2
5 pkgdesc="A tiny media scanner library."
6 arch=('i686' 'x86_64')
7 url="http://hg.geexbox.org/libvalhalla"
8 license=('LGPL')
9 depends=('libexif' 'libnfo-hg' 'ffmpeg')
10 makedepends=('mercurial')
11 optdepends=()
12 provides=('libvalhalla')
13 conflicts=('libvalhalla')
14 source=()
15 md5sums=()
16 _hgroot="http://hg.geexbox.org/libvalhalla"
17 _hgrepo="libvalhalla"
19 build() {
20     cd ${startdir}/src
22     if [ -d ${_hgrepo} ]; then
23         cd ${startdir}/src/${_hgrepo}
24         hg pull -u
25     else
26         hg clone ${_hgroot}${_hgrepo} || return 1
27         cd ${startdir}/src/${_hgrepo}
28     fi
30     msg "Mercurial checkout done or server timeout"
31     msg "Starting make..."
33     cp -R ${startdir}/src/${_hgrepo} ${startdir}/src/${_hgrepo}-build
34     cd ${startdir}/src/${_hgrepo}-build
36     ./configure --prefix=/usr  --disable-grabber-nfo || return 1
37     make || return 1
38     make DESTDIR=${startdir}/pkg install
40     rm -rf ${startdir}/src/${_hgrepo}-build