21 lines
380 B
Bash
Executable file
21 lines
380 B
Bash
Executable file
#!/bin/sh
|
|
# sit class file
|
|
#
|
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2011
|
|
#
|
|
|
|
CATEGORY="compiler"
|
|
PACKAGE="gnu"
|
|
VERSION="4.6"
|
|
URL="http://gcc.gnu.org"
|
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
|
|
|
# Archive A and package name P
|
|
A=gcc-4.6.0.tar.bz2
|
|
P=gcc-4.6.0
|
|
|
|
|
|
# Other interesting configure options:
|
|
CONFIGURE_OPTS="
|
|
--enable-languages=all,go
|
|
"
|