diff options
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/gcc-gcj/PKGBUILD | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/pcr/gcc-gcj/PKGBUILD b/pcr/gcc-gcj/PKGBUILD index cefb1ccc1..2648936fa 100644 --- a/pcr/gcc-gcj/PKGBUILD +++ b/pcr/gcc-gcj/PKGBUILD @@ -1,23 +1,24 @@ -# Contributor: Renan Manola <rmanola@gmail.com> -# Contributor: Stefan Husmann <stefan-husmann@t-online.de> -# Contributor: Joey Dumont <joey.dumont@gmail.com> +# Maintainer (Arch): Joey Dumont <joey.dumont@gmail.com> +# Contributor (Arch): Renan Manola <rmanola@gmail.com> +# Contributor (Arch): Stefan Husmann <stefan-husmann@t-online.de> # Maintainer : Parabola GNU / Linux-libre Aurélien DESBRIÈRES <aurelien@hackers.camp> # Based on a modified version of the gcc PKGBUILD pkgname=gcc-gcj -pkgver=4.9.0 +pkgver=4.9.2 pkgrel=1 pkgdesc="The GNU Compiler for Java" arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL') url="http://gcc.gnu.org" depends=('gtk2' 'libxtst' 'alsa-lib' 'cloog>=0.16.2-1' 'libmpc>=0.8.2-2' 'classpath') -makedepends=('mpfr>=2.4.2-2' 'elfutils' 'jack' 'zip' 'gcc' 'libart-lgpl') +makedepends=('mpfr>=2.4.2-2' 'elfutils' 'jack' 'zip' 'gcc=4.9.2' 'libart-lgpl') optdepends=('python2: for running /usr/bin/aot-compile' 'java-environment: for runnig some jars') options=('!libtool') install=$pkgname.install source=("ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2") +sha512sums=('e96cba06d572dbe7f382a2b00fd9297dcf9f9219d46a9ad0bd904dc36d5e7db3335e422640b79a27fed6fde91b0731732b94a0e2fbcd47344d6779f8ba1f4f9c') build() { cd "$srcdir"/gcc-${pkgver} @@ -45,7 +46,7 @@ build() { --libexecdir=/usr/lib --enable-clocale=gnu --disable-libstdcxx-pch \ --with-tune=generic --enable-java-awt=gtk --with-java-home="$JAVA_HOME" \ --enable-libgcj-multifile --disable-plugin --with-system-zlib - CPPFLAGS= + CPPFLAGS="$CPPFLAGS -O2" make } |