blob: def325f154fb4cc2d7914138194837d0298962ed (
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
52
53
|
# Maintainer: bemxio <bemxiov@protonmail.com>
pkgname="sklauncher-bin"
pkgdesc="Secure and modern Minecraft Launcher"
pkgver=3.2.2
pkgrel=2
arch=(i686 x86_64)
url="https://skmedix.pl"
license=("Apache-2.0", "custom:SKlauncher")
depends=("java-runtime>=17")
makedepends=(unzip gendesk)
provides=(sklauncher)
conflicts=(sklauncher sklauncher-git)
install="sklauncher.install"
source=("https://skmedix.pl/binaries/_/SKlauncher-${pkgver}.jar" "sklauncher" "LICENSE")
md5sums=("dd5db753fa1ceb2e5a08621eb8a17a53" "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 launcher .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 into a separate file
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|