Created
May 26, 2019 17:46
-
-
Save simonpintarelli/3bb6bfe2bfbb877aa7869c64bccc4b2e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: James Spencer <james.s.spencer@gmail.com> | |
pkgname=cubew | |
_version=4.4 | |
_patch=.2 | |
pkgver=${_version}${_patch} | |
pkgrel=1 | |
pkgdesc="High-performance library for writing a multi-dimensional performance space." | |
arch=('i686' 'x86_64') | |
url="http://www.scalasca.org/software/cube-4.x/download.html" | |
license=('BSD') | |
depends=('zlib') | |
source=(http://apps.fz-juelich.de/scalasca/releases/cube/${_version}/dist/${pkgname}-${pkgver}.tar.gz) | |
sha1sums=('c79e9cedaf11d955be160afa73bf65f8b5b110e0') | |
sha256sums=('31a71e9a05e6523de2b86b4026821bbb75fb411eb5b18ae38b27c1f44158014a') | |
build() { | |
cd "$srcdir/${pkgname}-$pkgver" | |
./configure --prefix=/usr | |
make | |
} | |
package() { | |
cd "$srcdir/${pkgname}-$pkgver" | |
make DESTDIR="$pkgdir/" install | |
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment