summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1ab78454ec49d27d493937157a3d74935a0b220e (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
26
27
28
29
30
31
32
# Maintainer: Viktor Drobot (aka dviktor) linux776 [at] gmail [dot] com

pkgname=libint
pkgver=2.5.0
pkgrel=1
pkgdesc='A library for the evaluation of molecular integrals of many-body operators over Gaussian functions'
url='https://github.com/evaleev/libint'
license=('GPL3')
arch=('x86_64')
depends=('boost' 'boost-libs' 'gmp')
makedepends=('make' 'autoconf' 'doxygen' 'clang' 'texlive-bin')
source=("https://github.com/evaleev/libint/archive/v${pkgver}.tar.gz")
sha1sums=('ab49e3c3691bbeb32310d81f0bfff315db4213f2')
options=(!strip)

build() {
	cd ${srcdir}/${pkgname}-${pkgver}

    ./autogen.sh
    
    mkdir build
    cd build

    ../configure --prefix=/usr
    make
}

package() {
    cd ${srcdir}/${pkgname}-${pkgver}/build

    make DESTDIR="$pkgdir" install
}