diff options
Diffstat (limited to 'extra/swt')
-rw-r--r-- | extra/swt/PKGBUILD | 19 | ||||
-rw-r--r-- | extra/swt/build-swt.xml | 2 |
2 files changed, 9 insertions, 12 deletions
diff --git a/extra/swt/PKGBUILD b/extra/swt/PKGBUILD index 332cb5a36..a27856a13 100644 --- a/extra/swt/PKGBUILD +++ b/extra/swt/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 161779 2012-06-13 21:37:16Z guillaume $ +# $Id: PKGBUILD 166495 2012-09-08 11:23:32Z guillaume $ # Maintainer: Guillaume ALAUX <guillaume@archlinux.org> pkgname=swt -pkgver=3.7.2 +pkgver=4.2 pkgrel=1 -_date=201202080800 +_date=201206081400 pkgdesc="An open source widget toolkit for Java" arch=('i686' 'x86_64') url="http://www.eclipse.org/swt/" @@ -13,24 +13,21 @@ optdepends=('libgnomeui' 'mesa' 'libwebkit') makedepends=('java-environment' 'libxtst' 'mesa' 'libgnomeui' 'unzip' 'pkgconfig' 'libwebkit' 'apache-ant') if [ "${CARCH}" = "i686" ]; then _carch=x86 - md5sums=('9a858b11e66de8af41786eaf09fc9ee2' - 'f5e548bc26a0f1f3c18131be76face40') + md5sums=('3efe0404f6129183abae46f7620fe14f' + '2f556ab534fc2488c6e8c0ee6c02825c') fi if [ "${CARCH}" = "x86_64" ]; then _carch=x86_64 - md5sums=('b16ab5c9d274b9488432ebeae6e4af5a' - 'f5e548bc26a0f1f3c18131be76face40') + md5sums=('9e06b576116ff409f395571603582827' + '2f556ab534fc2488c6e8c0ee6c02825c') fi -source=(http://download.eclipse.org/eclipse/downloads/drops/R-${pkgver}-${_date}/swt-${pkgver}-gtk-linux-${_carch}.zip +source=(http://download.eclipse.org/eclipse/downloads/drops4/R-${pkgver}-${_date}/swt-${pkgver}-gtk-linux-${_carch}.zip build-swt.xml) -noextract=(swt-${pkgver}-gtk-linux-${_carch}.zip) # To test this pkg: # http://www.eclipse.org/swt/examples.php#standaloneOutsideEclipse -# http://download.eclipse.org/eclipse/downloads/drops/R-${pkgver}-${_date}/swt-${pkgver}-gtk-linux-${_carch}.zip build() { cd ${srcdir} - unzip -oq swt-${pkgver}-gtk-linux-${_carch}.zip src.zip unzip -oq src.zip -d src . /etc/profile.d/jdk.sh diff --git a/extra/swt/build-swt.xml b/extra/swt/build-swt.xml index ea775871b..a161204f8 100644 --- a/extra/swt/build-swt.xml +++ b/extra/swt/build-swt.xml @@ -8,7 +8,7 @@ </target> <target name="compile" depends="init" description="Compile the SWT toolset"> - <javac srcdir="${src}" destdir="${build}"/> + <javac srcdir="${src}" destdir="${build}" target="1.6" /> </target> <target name="jar"> |