updated on Wed Jan 25 20:08:56 UTC 2012
[aur-mirror.git] / arista-devel / PKGBUILD
blob2b1ec658b69c231dab329031401ae70b9fa013e4
1 # package by mrbug
2 pkgname=arista-devel
3 pkgver=20101228
4 pkgrel=1
5 pkgdesc="Easy to use multimedia transcoder for the GNOME Desktop (devel version)"
6 arch=('i686' 'x86_64')
7 url="http://programmer-art.org/projects/arista-transcoder"
8 license=('LGPL2.1')
9 makedepends=('git')
10 depends=('pygtk' 'gstreamer0.10-python' 'gstreamer0.10-ffmpeg' 'gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 'gstreamer0.10-bad-plugins' 'gstreamer0.10-ugly-plugins' 'gnome-python' 'dbus-python')
11 optdepends=('libdvdread' 'libdvdcss')
12 provides=('arista')
13 conflicts=('arista')
14 replaces=('arista' 'arista-bzr')
15 backup=()
16 options=()
17 install=
18 source=()
19 noextract=()
20 md5sums=()
22 _gitroot='git://github.com/danielgtaylor/arista.git'
23 _gitname='arista'
25 build() {
26     cd "${srcdir}"
28     msg "Connecting to github.com..."
30     if [ -d $startdir/src/$_gitname ] ; then
31         cd $_gitname && git-pull origin
32         msg "The local files have been updated."
33     else
34         git clone $_gitroot
35         cd $_gitname
36         msg "The git repository has been cloned."
37     fi
39     msg "Running setup script..."
41     python2 setup.py install --prefix=/usr --root=${pkgdir} || return 1