# $Id: PKGBUILD 181116 2013-03-31 19:16:38Z stephane $ # Maintainer: # Contributor: Andrea Scarpino # Contributor: Nick B pkgname=avogadro pkgver=1.1.0 pkgrel=4 pkgdesc="An advanced molecular editor based on Qt" arch=('i686' 'x86_64') url="http://avogadro.openmolecules.net/wiki/Main_Page" license=('GPL2') depends=('eigen2' 'openbabel' 'python2-pyqt' 'boost-libs' 'glew' 'python2-numpy') makedepends=('cmake' 'boost' 'doxygen' 'mesa-libgl') install=avogadro.install source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2" 'boost153.patch') md5sums=('f4fbef5ffc69cc312b2316426c36a78d' 'aa2573f78d5dbd85b3cb79e08acde8ab') build() { cd ${pkgname}-${pkgver} patch -p1 -i "${srcdir}"/boost153.patch cd ../ mkdir build cd build cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DPYTHON_EXECUTABLE=/usr/bin/python2 \ -DQT_MKSPECS_RELATIVE=share/qt4/mkspecs make } package() { cd build make DESTDIR="${pkgdir}" install }