summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1b8801214e2632485b8a0a0bee9789952d3be729 (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
# Maintainer: Jia Li <lijia1608@gmail.com>
pkgname=alpscore-openmpi
pkgver=1.0.0
pkgrel=1
pkgdesc="ALPS Core libraries for numerical simulations of condensed matter systems."
arch=(i686 x86_64)
url="http://alpscore.org"
license=('GPL2')
depends=('cmake' 'boost' 'hdf5' 'openmpi')
provides=("alpscore=$pkgver")
conflicts=(alpscore-git alpscore alpscore-openmpi-git alps)
source=("https://github.com/ALPSCore/ALPSCore/archive/v$pkgver.tar.gz")
md5sums=('ca602ac28478cc514d34fdd98513ab2e')

build() {
    cd "ALPSCore-$pkgver"
    mkdir -p build
    cd build
    CC=mpicc CXX=mpicxx cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DTesting=OFF -DDocumentation=OFF ..
    make
}

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