mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-02-04 10:37:15 +08:00
51 lines
1.8 KiB
Bash
51 lines
1.8 KiB
Bash
|
|
pkgname=eclipse
|
|
pkgver=4.5.0
|
|
pkgrel=1
|
|
_release=mars
|
|
pkgdesc="An IDE for Java and other languages."
|
|
arch=('x86_64')
|
|
url="http://eclipse.org"
|
|
depends=('java-environment' 'gtk2' 'unzip' 'libwebkit-gtk2' 'libxtst')
|
|
install=${pkgname}.install
|
|
license=("EPL/1.0")
|
|
|
|
# The file eclipse.png in this directory was fetched from:
|
|
#
|
|
# http://download.eclipse.org/eclipse/eclipse/downloads/drops4/R-${pkgver}-${_date}/news/images/icon.png
|
|
|
|
source=("http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/technology/epp/downloads/release/${_release}/R/${pkgname}-java-${_release}-R-linux-gtk-x86_64.tar.gz"
|
|
'https://www.eclipse.org/legal/epl-v10.html'
|
|
'eclipse.png'
|
|
'eclipse.desktop')
|
|
sha256sums=('2eeea5e563001f6812bad97e159befe4152bf8ef49124c98e635fd68104a1727'
|
|
'a40741b59364cc49449255e9b9bfe1fcfe6a2e7ab4d37ca89db3bacbfb14e9d2'
|
|
'91eb03b8ff33e2b05b6c0b1fa5ff145666833674ba3bd2aa2732fa0a3651c03d'
|
|
'88daed5095d908a4f4c273aafcd2855899f2516766a8958b9a653e030daa173c')
|
|
|
|
package() {
|
|
cd ${pkgname}
|
|
|
|
# create directories
|
|
install -dm755 "${pkgdir}"/usr/{share/{applications,licenses/eclipse},bin}
|
|
|
|
# install eclipse
|
|
cp -ar "${srcdir}/eclipse" "${pkgdir}/usr/share/"
|
|
|
|
# install bin symlink
|
|
ln -s "/usr/share/eclipse/eclipse" "$pkgdir/usr/bin/"
|
|
install -m644 "${srcdir}/eclipse.desktop" "${pkgdir}/usr/share/applications/"
|
|
|
|
# install icon
|
|
for _i in 16 32 48 256; do
|
|
install -Dm644 plugins/org.eclipse.platform_*/eclipse${_i}.png \
|
|
"${pkgdir}/usr/share/icons/hicolor/${_i}x${_i}/apps/eclipse.png"
|
|
done
|
|
|
|
install -Dm644 "${srcdir}/eclipse.png" \
|
|
"${pkgdir}/usr/share/icons/hicolor/512x512/apps/eclipse.png"
|
|
|
|
# license
|
|
cp -a "${srcdir}/epl-v10.html" "${pkgdir}/usr/share/licenses/eclipse/epl-v10.html"
|
|
}
|