37 lines
1.3 KiB
Plaintext
37 lines
1.3 KiB
Plaintext
# Template file for 'eclipse'
|
|
pkgname=eclipse
|
|
version=4.3.2
|
|
revision=1
|
|
wrksrc="eclipse"
|
|
makedepends="jre?java-runtime unzip gtk+ webkitgtk libXtst hicolor-icon-theme desktop-file-utils"
|
|
depends="${makedepends}"
|
|
short_desc="An IDE for Java and other languages"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="EPL"
|
|
homepage="http://eclipse.org"
|
|
|
|
only_for_archs="i686 x86_64"
|
|
|
|
_release=kepler-SR2
|
|
|
|
if [ "$XBPS_MACHINE" = "x86_64" ]; then
|
|
distfiles="http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/technology/epp/downloads/release/${_release/-//}/eclipse-standard-${_release}-linux-gtk-x86_64.tar.gz"
|
|
checksum=7f014c1c20f8b3347c04a72cc902036e9120b7d6dccf38e61701d5d4303605a5
|
|
else
|
|
distfiles="http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/technology/epp/downloads/release/${_release/-//}/eclipse-standard-${_release}-linux-gtk.tar.gz"
|
|
checksum=d32a08061678cf171f28c0c19e3a3da49d311a8f7428666b6ab3d6a499dd1fed
|
|
fi
|
|
|
|
do_install() {
|
|
vmkdir usr/lib/eclipse
|
|
cp -a ${wrksrc}/* ${DESTDIR}/usr/lib/eclipse
|
|
|
|
vinstall ${FILESDIR}/eclipse.sh 755 usr/bin eclipse
|
|
vinstall ${FILESDIR}/eclipse.desktop 644 usr/share/applications
|
|
|
|
for _i in 16 32 48 256; do
|
|
install -Dm644 plugins/org.eclipse.platform_*/eclipse${_i}.png \
|
|
${DESTDIR}/usr/share/icons/hicolor/${_i}x${_i}/apps/eclipse.png
|
|
done
|
|
}
|