Skip to content

Instantly share code, notes, and snippets.

@simonpintarelli
Created May 26, 2019 17:47
Show Gist options
  • Save simonpintarelli/9122534582a13e27666e7490398749a0 to your computer and use it in GitHub Desktop.
Save simonpintarelli/9122534582a13e27666e7490398749a0 to your computer and use it in GitHub Desktop.
# Maintainer: James Spencer <james.s.spencer@gmail.com>
# Contributor: Ghislain Viguier <ghislain.viguier@gmail.com>
pkgname=scalasca
pkgver=2.5
pkgrel=1
pkgdesc="Tool for measuring and analyzing runtime behavior of parallel programs."
arch=('i686' 'x86_64')
url="http://www.scalasca.org/start.html"
license=('custom')
depends=('openmpi')
makedepends=('cubelib' 'cubew' 'cubegui' 'otf2' 'scorep' 'openmpi')
install=scalasca.install
source=(http://apps.fz-juelich.de/scalasca/releases/$pkgname/$pkgver/dist/$pkgname-$pkgver.tar.gz)
sha1sums=('44828bf8c83347b9ee17e8b28bb6419d4bd24d1e')
sha256sums=('7dfa01e383bfb8a4fd3771c9ea98ff43772e415009d9f3c5f63b9e05f2dde0f6')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr --with-mpi=openmpi
make
}
check() {
cd "$srcdir/$pkgname-$pkgver"
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR=$pkgdir install
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment