diff options
author | root <root@rshg054.dnsready.net> | 2013-02-10 01:12:52 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-02-10 01:12:52 -0800 |
commit | 1bb2648cde916ac27d3dd75d7b64a4ddc89787b7 (patch) | |
tree | 016bfa1969323404c37dbef29cfc7242a5a8e9f3 /community/edje-svn | |
parent | e9c244cac8e5dc1c59c7e8b7bc885fef04224b70 (diff) |
Sun Feb 10 01:12:35 PST 2013
Diffstat (limited to 'community/edje-svn')
-rwxr-xr-x | community/edje-svn/PKGBUILD | 58 | ||||
-rw-r--r-- | community/edje-svn/edje.install | 16 |
2 files changed, 0 insertions, 74 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 - -} diff --git a/community/edje-svn/edje.install b/community/edje-svn/edje.install deleted file mode 100644 index 8407f4576..000000000 --- a/community/edje-svn/edje.install +++ /dev/null @@ -1,16 +0,0 @@ -post_install() { - update-mime-database usr/share/mime > /dev/null -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} - - - - - |