30 lines
542 B
Bash
Executable file
30 lines
542 B
Bash
Executable file
#!/bin/sh
|
|
# sit class file
|
|
#
|
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2011
|
|
#
|
|
|
|
CATEGORY="compiler"
|
|
PACKAGE="berkeley_upc_translator"
|
|
VERSION="2.12.2"
|
|
|
|
PACKAGENAME="Berkeley UPC-to-C translator"
|
|
URL="http://upc.lbl.gov/"
|
|
INSTALLER="Christoph Niethammer <niethammer@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
|
|
}
|