mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
24 lines
705 B
Bash
24 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')
|