diff options
Diffstat (limited to 'community/python-openbabel/PKGBUILD')
-rw-r--r-- | community/python-openbabel/PKGBUILD | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/community/python-openbabel/PKGBUILD b/community/python-openbabel/PKGBUILD deleted file mode 100644 index a826601e6..000000000 --- a/community/python-openbabel/PKGBUILD +++ /dev/null @@ -1,58 +0,0 @@ -# $Id: PKGBUILD 80457 2012-11-22 01:42:13Z arodseth $ -# Maintainer: Alexander Rødseth <rodseth@gmail.com> -# Contributor: Andrea Scarpino <andrea@archlinux.org> -# Contributor: Michal Bozon <bozonm@vscht.cz> - -pkgname=('python-openbabel' 'python2-openbabel') -pkgver=2.3.2 -pkgrel=1 -pkgdesc='Python bindings for the openbabel library' -arch=('x86_64' 'i686') -url='http://openbabel.org/wiki/Python' -license=('GPL') -depends=('gcc-libs' "openbabel=${pkgver}" 'eigen2') -makedepends=('swig' 'cmake' 'python-distribute' 'python2-distribute') -options=('!libtool') -source=("http://downloads.sourceforge.net/openbabel/openbabel-$pkgver.tar.gz") -sha256sums=('4eaca26679aa6cc85ebf96af19191472ac63ca442c36b0427b369c3a25705188') - -build() { - cp -r openbabel-$pkgver python2-openbabel-$pkgver - - cd $srcdir/openbabel-$pkgver - - # Create babelconfig.h - cmake . - - # Regenerate interface with the patched swig 2.0.2 - cd scripts - swig -I../include/ -python -py3 -c++ openbabel-python.i - mv openbabel-python_wrap.cxx python/openbabel-python.cpp - mv openbabel.py python/ - - cd python - sed -i '19i os.path.join("/usr/include/openbabel-2.0"),' setup.py - sed -i '20i os.path.join("/usr/include/eigen2"),' setup.py - - cd $srcdir/python2-openbabel-$pkgver/scripts/python - sed -i '19i os.path.join("/usr/include/openbabel-2.0"),' setup.py - sed -i '20i os.path.join("/usr/include/eigen2"),' setup.py -} - -package_python-openbabel() { - depends+=('python') - - cd "$srcdir/openbabel-$pkgver/scripts/python" - - python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 -} - -package_python2-openbabel() { - depends+=('python2') - - cd "$srcdir/python2-openbabel-$pkgver/scripts/python" - - python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 -} - -# vim:set ts=2 sw=2 et: |