mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 05:47:14 +08:00
24 lines
709 B
Bash
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
|
|
}
|