diff options
author | Alon Ivtsan <alonivtsan@lavabit.com> | 2013-08-17 08:05:50 +0300 |
---|---|---|
committer | Alon Ivtsan <alonivtsan@lavabit.com> | 2013-08-17 08:05:50 +0300 |
commit | 22e0e9872d1ee349b642561ee5dd9585055ea1d4 (patch) | |
tree | 1e551ed6fa47b74f280deb77f1bb2147320496f4 | |
parent | 6a700aa68c062f57fa74bb6a1362acdd373f58dc (diff) |
adding python2-edje PKGBUILD to pcr
-rw-r--r-- | pcr/python2-edje/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/pcr/python2-edje/PKGBUILD b/pcr/python2-edje/PKGBUILD new file mode 100644 index 000000000..5a63b993f --- /dev/null +++ b/pcr/python2-edje/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: Doug Newgard <scimmia22 at outlook dot com> + +pkgname=python2-edje +_pkgname=python-edje +pkgver=1.7.0 +pkgrel=1 +pkgdesc="Python2 bindings for Edje" +arch=('i686' 'x86_64') +url="http://www.enlightenment.org" +license=('LGPL2.1') +depends=('edje' 'python2-evas') +makedepends=('cython2') +options=('!libtool' '!emptydirs') +source=("http://download.enlightenment.org/releases/BINDINGS/python/$_pkgname-$pkgver.tar.bz2") +md5sums=('1e0d7a4a4504298caaad0cee476e4edb') + +build() { + cd "$srcdir/$_pkgname-$pkgver" + + PYTHON=/usr/bin/python2 \ + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$_pkgname-$pkgver" + make DESTDIR="$pkgdir/" install +} + |