blob: a79fd3a8556a8f6aa0f0e1c8f47ccef04a1c22f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Lenny McLennington <lenny@sneed.church>
pkgname=polymc-qt5-bin
pkgver=6.1
pkgrel=1
pkgdesc="Minecraft launcher with the ability to manage multiple instances."
arch=('x86_64')
url="https://github.com/PolyMC/PolyMC"
license=('GPL3')
depends=('java-runtime' 'libgl' 'qt5-base' 'qt5-svg' 'qt5-imageformats' 'qt5-charts' 'zlib' 'hicolor-icon-theme')
provides=('polymc' 'polymc-qt5')
conflicts=('polymc' 'polymc-qt5')
optdepends=('java-runtime=8: support for Minecraft versions < 1.17'
'java-runtime=17: support for Minecraft versions >= 1.17')
source=("https://github.com/PolyMC/PolyMC/releases/download/${pkgver}/PolyMC-Linux-${pkgver}.tar.gz")
noextract=("PolyMC-Linux-${pkgver}.tar.gz")
sha256sums=('8baab026f8ea7b63a299bb88d139858e0b542370a7c99773c6e5baceb2dda81b')
package() {
install -d "$pkgdir/usr"
tar -C "$pkgdir/usr" -xvf PolyMC-Linux-${pkgver}.tar.gz
chown -R root:root "$pkgdir/usr" # fils in tarball are not owned by root
}
|