wok-next diff ecj/receipt @ rev 21680
updated gf2x (1.2 -> 1.3.0)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Jun 29 14:15:30 2020 +0100 (2020-06-29) |
parents | 0cbe4b1f2230 |
children |
line diff
1.1 --- a/ecj/receipt Mon Dec 03 14:47:30 2018 +0200 1.2 +++ b/ecj/receipt Mon Jun 29 14:15:30 2020 +0100 1.3 @@ -1,10 +1,11 @@ 1.4 # SliTaz package receipt v2. 1.5 1.6 PACKAGE="ecj" 1.7 -VERSION="3.6" 1.8 +VERSION="4.16" 1.9 CATEGORY="development" 1.10 +TAGS="compiler java" 1.11 SHORT_DESC="The Eclipse standalone batch Java compiler and Ant compiler adapter" 1.12 -MAINTAINER="devel@slitaz.org" 1.13 +MAINTAINER="maintainer@slitaz.org" 1.14 LICENSE="other" 1.15 WEB_SITE="http://www.eclipse.org/jdt/core/" 1.16 HOST_ARCH="any" 1.17 @@ -13,22 +14,24 @@ 1.18 # 3.4.2: WGET_URL="http://download.eclipse.org/eclipse/downloads/drops/R-$VERSION-200902111700/$TARBALL" 1.19 # 3.5.2: WGET_URL="http://download.eclipse.org/eclipse/downloads/drops/R-$VERSION-201002111343/$TARBALL" 1.20 # 3.6: 1.21 -WGET_URL="http://download.eclipse.org/eclipse/downloads/drops/R-$VERSION-201006080911/$TARBALL" 1.22 +#WGET_URL="http://download.eclipse.org/eclipse/downloads/drops/R-$VERSION-201006080911/$TARBALL" 1.23 +# 4.16: 1.24 +WGET_URL="https://download.eclipse.org/eclipse/downloads/drops4/R-$VERSION-202006040540/$TARBALL" 1.25 1.26 -compile_rules() { 1.27 +compile_rules() 1.28 +{ 1.29 # Build the ecj shell script to use the current version 1.30 mkdir -p $install/usr/bin 1.31 echo "#!/bin/sh" > $install/usr/bin/ecj 1.32 echo "ECJ_VERSION=$VERSION" >> $install/usr/bin/ecj 1.33 cat $stuff/ecj.sh.part >> $install/usr/bin/ecj 1.34 - chmod +x $install/usr/bin/ecj 1.35 - mkdir -p $install/usr/share/java 1.36 - cp -a $src/*.jar $install/usr/share/java 1.37 + chmod +x $install/usr/bin/ecj 1.38 + mkdir -p $install/usr/share/java 1.39 + cp -a $src/*.jar $install/usr/share/java 1.40 } 1.41 1.42 -genpkg_rules() { 1.43 - mkdir -p $fs 1.44 - cp -a $install/usr $fs 1.45 +genpkg_rules() 1.46 +{ 1.47 + cp -a $install/usr $fs 1.48 SUGGESTED="java-jre" 1.49 - TAGS="compiler java" 1.50 }