1 # Maintainer: Giuseppe Marco Randazzo <gmrandazzo@gmail.com>
6 pkgdesc="RDKit - A collection of cheminformatics and machine-learning software written in C++ and Python."
8 url="http://rdkit.org/"
9 license=('New BSD License')
10 depends=( 'bison' 'boost' 'boost-libs' 'cmake' 'flex' 'python2' 'sqlite3' )
11 source=(http://downloads.sourceforge.net/${pkgname}/${_pkgname}_${pkgver}.tgz)
12 md5sums=('009bb423300f6f25137175b7a842e3c8')
18 cmake ../${_pkgname}_${pkgver} \
19 -DCMAKE_BUILD_TYPE=Release \
20 -DRDK_INSTALL_INTREE=0 \
21 -DCMAKE_INSTALL_PREFIX=/usr \
22 -DPYTHON_LIBRARY=/usr/lib/python2.7/config/libpython2.7.a \
23 -DPYTHON_INCLUDE_DIR=/usr/include/python2.7/ \
24 -DPYTHON_EXECUTABLE=/usr/bin/python2
30 make DESTDIR=${pkgdir} install