summaryrefslogtreecommitdiff
path: root/community/edje-svn/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/edje-svn/PKGBUILD')
-rwxr-xr-xcommunity/edje-svn/PKGBUILD58
1 files changed, 0 insertions, 58 deletions
diff --git a/community/edje-svn/PKGBUILD b/community/edje-svn/PKGBUILD
deleted file mode 100755
index 4371c3fd6..000000000
--- a/community/edje-svn/PKGBUILD
+++ /dev/null
@@ -1,58 +0,0 @@
-# $Id: PKGBUILD 76280 2012-09-15 10:10:05Z rvanharen $
-# Maintainer: Ronald van Haren <ronald.archlinux.org>
-# Contributor: Ronald van Haren <ronald.archlinux.org>
-
-pkgname=edje-svn
-pkgver=76688
-pkgrel=1
-pkgdesc="A graphical design and layout library based on Evas"
-arch=('i686' 'x86_64')
-groups=('e17-libs-svn' 'e17-svn')
-url="http://www.enlightenment.org"
-license=('BSD')
-depends=('ecore-svn' 'embryo-svn' 'lua' 'shared-mime-info')
-optdepends=('python2: inkscape2edc')
-makedepends=('svn')
-conflicts=('edje')
-provides=('edje')
-install=edje.install
-options=('!libtool')
-
-_svntrunk="http://svn.enlightenment.org/svn/e/trunk/edje"
-_svnmod="edje"
-
-build() {
- cd $srcdir
-
-msg "Connecting to $_svntrunk SVN server...."
- if [ -d $_svnmod/.svn ]; then
- (cd $_svnmod && svn up -r $pkgver)
- else
- svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
- fi
-
- msg "SVN checkout done or server timeout"
- msg "Starting make..."
-
- cp -r $_svnmod $_svnmod-build
- cd $_svnmod-build
-
- # python2 fix
- sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' utils/inkscape2edc
-
- ./autogen.sh --prefix=/usr --enable-amalgamation
- make
-}
-
-package(){
- cd $srcdir/$_svnmod-build
-
- make DESTDIR=$pkgdir install
-
-# install license files
- install -Dm644 $srcdir/$_svnmod-build/COPYING \
- $pkgdir/usr/share/licenses/$pkgname/COPYING
-
- rm -r $srcdir/$_svnmod-build
-
-}