updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / editje-svn / PKGBUILD
blob0f2d99d453f82fc35a572b46a21474f6479fcbf5
1  # Contributor: fuji
3 pkgname=editje-svn
4 pkgver=60407
5 pkgrel=1
6 pkgdesc="Editje is an Edje editor oriented towards UI design, and not just being a GUI over the edc syntax."
7 url="http://trac.enlightenment.org/e/wiki/Editje"
8 arch=('i686' 'x86_64')
9 license=(LGPL3)
10 depends=('python-elementary-svn' 'python-edje-svn' 'python-ecore-svn' 'python-evas-svn' 'python2')
11 makedepends=('subversion')
12 conflicts=()
13 provides=()
15 _svntrunk=http://svn.enlightenment.org/svn/e/trunk/editje
16 _svnmod=editje
18 build() {
19    cd ${srcdir}
21    if [ -d $_svnmod/.svn ]; then
22        (cd $_svnmod && svn up -r $pkgver)
23    else
24        svn co $_svntrunk --config-dir ./ $_svnmod
25    fi
27    msg "SVN checkout done or server timeout"
28    msg "Starting make..."
30    cd $_svnmod
31    PYTHON=python2.7 PYTHONPATH=/usr/lib/python2.7/site-packages/ ./autogen.sh --prefix=/usr
32    make DESTDIR=$pkgdir install || return 1