# # Apps Packages for Chakra, part of chakra-project.org # # maintainer (x86_64): Giuseppe CalĂ  # include global config source ../_buildscripts/${current_repo}-${_arch}-cfg.conf pkgname=avogadro pkgver=1.0.3 pkgrel=2 pkgdesc="An advanced molecular editor based on Qt" arch=('i686' 'x86_64') url="http://avogadro.openmolecules.net/wiki/Main_Page" license=('GPL2') depends=('eigen' 'openbabel' 'pyqt' 'boost-libs' 'glew' 'python-numpy') makedepends=('cmake' 'boost') source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2") md5sums=('92c2702c1980f70fb6d87a1a58147911') build() { cd ${srcdir} mkdir build cd build # use the cmake module in system to enable python 2.7 support rm ../${pkgname}-${pkgver}/cmake/modules/FindPythonLibs.cmake cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd ${srcdir}/build make DESTDIR=${pkgdir} install }