blob: 2fddbab925f531eea27f4b6b0121407274bc9972 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Maintainer: bemxio <bemxiov at protonmail dot com>
pkgname="sklauncher-bin"
pkgdesc="Secure and modern Minecraft Launcher"
pkgver=3.2.10
pkgrel=1
arch=(any)
url="https://skmedix.pl"
license=("Apache-2.0" "LicenseRef-SKlauncher")
depends=("java-runtime>=17")
makedepends=(unzip gendesk)
provides=(sklauncher)
install="sklauncher.install"
source=("https://skmedix.pl/binaries/skl/${pkgver}/SKlauncher-${pkgver}.jar" "sklauncher" "LICENSE")
md5sums=("1495e81aa573744050268cb330af8281" "3fbda136409cd254ce125839e59ae1c1" "edd0f7efa3df3a5cadaa2ecebf9eb57d")
noextract=("SKlauncher-${pkgver}.jar")
prepare() {
# extract the logo out of the JAR file
unzip -o -j "SKlauncher-${pkgver}.jar" logo.png -d .
# generate a .desktop file
gendesk -f -n \
--pkgname SKlauncher \
--pkgdesc "${pkgdesc}" \
--exec sklauncher \
--icon sklauncher.png \
--categories "Game;Simulation"
}
package() {
# copy the JAR file
install -Dm755 "SKlauncher-${pkgver}.jar" "${pkgdir}/usr/share/java/sklauncher/SKlauncher.jar"
# copy the executable script
install -Dm755 sklauncher "${pkgdir}/usr/bin/sklauncher"
# copy the extracted icon and the generated .desktop file
install -Dm644 logo.png "${pkgdir}/usr/share/pixmaps/sklauncher.png"
install -Dm644 SKlauncher.desktop "${pkgdir}/usr/share/applications/sklauncher.desktop"
# copy the terms of service
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|