# $Id: PKGBUILD 140489 2011-10-15 15:29:09Z ibiru $ # Maintainer: Paul Mattal # Contributor: Andrew Wright # Contributor: Andreas W. Hauser # Contributor: Marco Crosio pkgname=eclipse pkgver=3.7.1 _internal_pkgver=3.7.1 pkgrel=2 _date=201109091335 pkgdesc="An IDE for Java and other languages" arch=('i686' 'x86_64') url="http://eclipse.org" depends=('java-environment' 'gtk2' 'unzip' 'libwebkit') install=${pkgname}.install makedepends=('zip') license=("EPL/1.1") source=("ftp://ftp.osuosl.org/pub/eclipse/eclipse/downloads/drops/R-${pkgver}-${_date}/${pkgname}-SDK-${pkgver}-linux-gtk.tar.gz" 'eclipse.svg' 'eclipse.sh' 'eclipse.desktop' 'eclipse.ini.patch') md5sums=('c7f3e186e7996d3a8afc16eec9e9e71f' '77cff7543ccf7e177cb6667f5a20ce19' '7ea99a30fbaf06ec29261541b8eb1e23' 'ba8a37e30a7ebd69774cec87c69e8c44' '017b2a68edc48a752a7e27c7aceef797') [ "$CARCH" = "x86_64" ] && source[0]="ftp://ftp.osuosl.org/pub/eclipse/eclipse/downloads/drops/R-${pkgver}-${_date}/${pkgname}-SDK-${pkgver}-linux-gtk-${CARCH}.tar.gz" [ "$CARCH" = "x86_64" ] && md5sums[0]='b8b37135600d92c373514ce5bb094143' package() { cd "${srcdir}/eclipse" # patch to increase default memory limits patch -Np1 -i "${srcdir}/eclipse.ini.patch" # install eclipse install -m755 -d "${pkgdir}/usr/share" mv "${srcdir}/eclipse" "${pkgdir}/usr/share/" # install misc install -d ${pkgdir}/usr/bin ${pkgdir}/usr/share/applications \ ${pkgdir}/usr/share/icons/hicolor/{16x16,32x32,48x48}/apps install -m755 "${srcdir}/eclipse.sh" "${pkgdir}/usr/bin/eclipse" install -m644 "${srcdir}/eclipse.desktop" "${pkgdir}/usr/share/applications/" ln -s /usr/share/eclipse/plugins/org.eclipse.sdk_${_internal_pkgver}.v${_date}/eclipse.png \ "${pkgdir}/usr/share/icons/hicolor/16x16/apps/eclipse.png" ln -s /usr/share/eclipse/plugins/org.eclipse.sdk_${_internal_pkgver}.v${_date}/eclipse32.png \ "${pkgdir}/usr/share/icons/hicolor/32x32/apps/eclipse.png" ln -s /usr/share/eclipse/plugins/org.eclipse.sdk_${_internal_pkgver}.v${_date}/eclipse48.png \ "${pkgdir}/usr/share/icons/hicolor/48x48/apps/eclipse.png" # install icon install -Dm644 ${srcdir}/eclipse.svg \ ${pkgdir}/usr/share/icons/hicolor/scalable/apps/eclipse.svg }