Added installation script for Berkley UPC-to-C translator version 2.20.2 (Release Date: April 27, 2015)

This commit is contained in:
Kamran Idrees 2015-04-29 13:53:41 +00:00 committed by Christoph Niethammer
parent 2512f1ee7b
commit 4c9e60181a

View file

@ -0,0 +1,30 @@
#!/bin/sh
# sit class file
#
# Kamran Idrees <idrees@hlrs.de> (C) 2015
#
CATEGORY="compiler"
PACKAGE="berkeley_upc_translator"
VERSION="2.20.2"
PACKAGENAME="Berkeley UPC-to-C translator"
URL="http://upc.lbl.gov/"
INSTALLER="Kamran Idrees <idrees@hlrs.de>"
# Archive A and package name P
A=${PACKAGE}-${VERSION}.tar.gz
P=${PACKAGE}-${VERSION}
BUILDDIR=$SRCDIR
MAKEOPTS=""
src_configure() {
sit_info "nothing to do for the translator"
/bin/true
}
src_install() {
sit_info $PWD
make install PREFIX=$PREFIX
}