blob: 1517164de2f31dd557c2fdad6122a8bc1288a6f3 (
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
|
# Maintainer: Viktor Drobot (aka dviktor) linux776 [at] gmail [dot] com
pkgname=libint2
_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
}
|