core/openbabel/PKGBUILD
Jan Mette 93d9bd24fe
2010-03-14 15:48:48 +00:00

24 lines
709 B
Bash

# $Id: PKGBUILD 54590 2009-10-11 11:10:53Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
pkgname=openbabel
pkgver=2.2.3
pkgrel=1
pkgdesc="A library designed to interconvert between many file formats used in molecular modeling and computational chemistry."
arch=('i686' 'x86_64')
url="http://openbabel.sourceforge.net/"
license=('GPL')
depends=('gcc-libs' 'libxml2')
options=('!libtool')
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
md5sums=('7ea8845c54d6d3a9be378c78088af804')
build() {
cd ${srcdir}/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make prefix=${pkgdir}/usr install
}