blob: f8d0f85a10f72dc766be8814072076fb88684e7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Maintainer: Florian Latifi <mail@florian-latifi.at>
# Contributor: Eddy <e.pedroni91 at gmail>
# Contributor: Shanto <shanto at hotmail>
# Contributor: Jesus Jerez <jhuss@archlinux.org.ve>
pkgname=eclipse-platform
pkgver=4.19
_pkgbuild=202103031800
pkgrel=1
pkgdesc="A minimal installation suitable for complete per-user customization with the built-in Eclipse package manager"
url="https://www.eclipse.org"
arch=("x86_64")
license=("EPL")
depends=("java-runtime>=11" "unzip" "webkit2gtk")
optdepends=()
conflicts=("eclipse-common")
provides=("eclipse=$pkgver")
options=(!strip)
source=("http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops4/R-${pkgver}-${_pkgbuild}/eclipse-platform-${pkgver}-linux-gtk-x86_64.tar.gz&r=1"
"eclipse.sh"
"eclipse.desktop")
sha512sums=('9e0629e0acd18874a8600f0a48a33fc45833395108cdd4cb17ddbe874ec0dcbcef848f68ba54f52c055ac7c64611fd3610b933a942736a835a9c5a92c7d3b007'
'71393b01c2774654e1b3348ceedd6b110c7f1b26da93da40dac653ce2103a34997ec0e9e7fd4e977d869c149d19ef39f59738717cc6762e39b0bc0e7d53df4ac'
'5275e253fa00998d117e2a3bb9aaefe3db68829f569fe71f1338117f3a37bfda6643745a1e5f42e479da629749673c68fd1cfd757a55cbe194ae61781e9e57b5')
package() {
install -d ${pkgdir}/usr/bin ${pkgdir}/usr/lib ${pkgdir}/usr/share/applications
install -m755 "${srcdir}/eclipse.sh" "${pkgdir}/usr/bin/eclipse"
install -Dm644 "${srcdir}/eclipse.desktop" "${pkgdir}/usr/share/applications/"
for _i in 16 32 48 256; do
install -Dm644 "${srcdir}"/eclipse/plugins/org.eclipse.platform_*/eclipse${_i}.png "$pkgdir/usr/share/icons/hicolor/${_i}x${_i}/apps/eclipse.png"
done
mv "${srcdir}/eclipse" "${pkgdir}/usr/lib/"
}
|