Added installation script for Berkley UPC-to-C translator version 2.20.2 (Release Date: April 27, 2015)
This commit is contained in:
parent
2512f1ee7b
commit
4c9e60181a
1 changed files with 30 additions and 0 deletions
30
packages/compiler/berkeley_upc_translator/berkeley_upc_translator-2.20.2
Executable file
30
packages/compiler/berkeley_upc_translator/berkeley_upc_translator-2.20.2
Executable 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
|
||||
}
|
Loading…
Reference in a new issue