summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5949a1814c2d68e11e03196c2201027f692b90fd (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Maintainer: Alexander Oleynichenko <alexvoleynichenko@gmail.com>
pkgname=libint2
pkgver='2.3.0'
pkgrel=1
epoch=
pkgdesc="A high-performance library for evaluation of molecular integrals of many-body operators over Gaussian functions"
arch=('i686' 'x86_64')
url="https://github.com/evaleev/libint"
license=('GPL')
groups=()
depends=()
makedepends=(gcc automake autoconf)
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("https://github.com/evaleev/libint/archive/master.zip")
noextract=()
md5sums=('SKIP')
validpgpkeys=()

build() {
    cd "$srcdir/libint-master"
    ./autogen.sh
    mkdir build
    cd build
    ../configure --prefix=/usr
    make -j8
}

check() {
    cd "$srcdir/libint-master/build"
#   You may uncomment 'make check' line if you want;
#   however, check is a VERY time-consuming and actually not needed
#	make -k check
}

package() {
	cd "$srcdir/libint-master/build"
	make DESTDIR="$pkgdir/" install
}