summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bffe04fce766e40963382332db99d5e9d528e358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Maintainer: Connor Behan <connor.behan@gmail.com>
# Contributor: Gabriele Lanaro <gabriele.lanaro@gmail.com>

pkgname=mopac7
pkgver=1.15
pkgrel=1
url="https://www.bioinformatics.org/ghemical/ghemical/"
license=("GPL")
pkgdesc="Computational chemistry library, that provides function to ghemical"
arch=(i686 x86_64)
depends=('gcc-fortran')
source=("https://bioinformatics.org/ghemical/download/release20111012/$pkgname-$pkgver.tar.gz")

build() {
  cd "$srcdir"/$pkgname-$pkgver
  ./configure --prefix=/usr 
  make
}

package() {
  cd "$srcdir"/$pkgname-$pkgver
  make DESTDIR="$pkgdir" install
}

md5sums=('7e509fd03154b37cc682593365c233f4')