mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
24 lines
709 B
Bash
24 lines
709 B
Bash
|
# $Id: PKGBUILD 47693 2009-07-25 11:22:39Z andrea $
|
||
|
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
||
|
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
|
||
|
|
||
|
pkgname=openbabel
|
||
|
pkgver=2.2.2
|
||
|
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=('0d9c12c500749df7269f9e7ac742e94a')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/$pkgname-$pkgver
|
||
|
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make prefix=${pkgdir}/usr install
|
||
|
}
|