mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
23 lines
705 B
Bash
23 lines
705 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Abhishek Dasgupta <abhidg@gmail.com>
|
|
# Contributor: Abhishek Dasgupta <abhidg@gmail.com>
|
|
|
|
pkgname=liboglappth
|
|
pkgver=0.98
|
|
pkgrel=1
|
|
pkgdesc="Library containing computational chemistry facility of ghemical"
|
|
license=("GPL")
|
|
arch=(i686 x86_64)
|
|
url="http://bioinformatics.org/ghemical/libghemical/"
|
|
depends=('gcc-libs')
|
|
makedepends=('mesa')
|
|
options=(!libtool)
|
|
source=(http://bioinformatics.org/ghemical/download/current/${pkgname}-${pkgver}.tar.gz)
|
|
|
|
build() {
|
|
cd ${startdir}/src/${pkgname}-${pkgver}/
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${startdir}/pkg install || return 1
|
|
}
|
|
md5sums=('dd280286a51fcba6a47264a383a2f1fe')
|