Christoph Niethammer
068686efb3
Moved packages into sub directories easing the use of additional installation files (e.g. patches). Calling sit now with the following syntax: [OPTIONS] ./sit <category>/<package>/<package>-<version>
21 lines
392 B
Bash
Executable file
21 lines
392 B
Bash
Executable file
#!/bin/sh
|
|
# sit class file
|
|
#
|
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2011
|
|
#
|
|
|
|
CATEGORY="compiler"
|
|
PACKAGE="gnu"
|
|
VERSION="4.6.1"
|
|
URL="http://gcc.gnu.org"
|
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
|
|
|
# Archive A and package name P
|
|
A=gcc-${VERSION}.tar.bz2
|
|
P=gcc-${VERSION}
|
|
|
|
|
|
# Other interesting configure options:
|
|
CONFIGURE_OPTS="
|
|
--enable-languages=all,go
|
|
"
|