diff options
author | Kaydax | 2023-02-04 12:21:40 -0500 |
---|---|---|
committer | Kaydax | 2023-02-04 12:21:40 -0500 |
commit | 9de9a8e1accaef0bd4784ed80121376cb8138aaa (patch) | |
tree | ad47114bb9083b87034ef33b355b8813fef0868a | |
parent | bed84e1139eb1f5df10e76fa4758b78e9d6b9b9c (diff) | |
download | aur-9de9a8e1accaef0bd4784ed80121376cb8138aaa.tar.gz |
PolyMC 5.0 Release
-rw-r--r-- | .SRCINFO | 7 | ||||
-rw-r--r-- | PKGBUILD | 12 |
2 files changed, 8 insertions, 11 deletions
@@ -1,6 +1,6 @@ pkgbase = polymc pkgdesc = Minecraft launcher with the ability to manage multiple instances - pkgver = 1.4.3 + pkgver = 5.0 pkgrel = 1 url = https://github.com/PolyMC/PolyMC arch = x86_64 @@ -18,11 +18,12 @@ pkgbase = polymc depends = zlib depends = hicolor-icon-theme depends = quazip-qt6 + depends = qt6-charts optdepends = glfw: to use system GLFW libraries optdepends = openal: to use system OpenAL libraries optdepends = visualvm: Profiling support optdepends = xorg-xrandr: for older minecraft versions - source = https://github.com/PolyMC/PolyMC/releases/download/1.4.3/PolyMC-1.4.3.tar.gz - sha256sums = c1292a3142663875883782677ea80abbf7e2329e88c54e73eff8f6159239a92e + source = https://github.com/PolyMC/PolyMC/releases/download/5.0/PolyMC-5.0.tar.gz + sha256sums = 72c16dfc029a30b169c80c6c571b37acfd634a1702fc8a376643c4cd7585f2df pkgname = polymc @@ -1,4 +1,4 @@ -# Maintainer: +# Maintainer: Kaydax <contact+aur@kaydax.xyz> # Contributor: Yellow <yellow@example.com> # Contributor: Lenny McLennington <lennymclennington@protonmail.com> # Contributor: Sefa Eyeoglu <contact@scrumplex.net> @@ -8,14 +8,14 @@ # Contributor: dada513 <dada513@protonmail.com> pkgname=polymc -pkgver=1.4.3 +pkgver=5.0 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' 'qt6-base' 'qt6-5compat' 'qt6-svg' - 'qt6-imageformats' 'zlib' 'hicolor-icon-theme' 'quazip-qt6') + 'qt6-imageformats' 'zlib' 'hicolor-icon-theme' 'quazip-qt6' 'qt6-charts') makedepends=('cmake' 'extra-cmake-modules' 'java-environment' 'scdoc') optdepends=('glfw: to use system GLFW libraries' 'openal: to use system OpenAL libraries' @@ -23,7 +23,7 @@ optdepends=('glfw: to use system GLFW libraries' 'xorg-xrandr: for older minecraft versions' ) source=("https://github.com/PolyMC/PolyMC/releases/download/$pkgver/PolyMC-$pkgver.tar.gz") -sha256sums=('c1292a3142663875883782677ea80abbf7e2329e88c54e73eff8f6159239a92e') +sha256sums=('72c16dfc029a30b169c80c6c571b37acfd634a1702fc8a376643c4cd7585f2df') build() { cmake -B build -S PolyMC-$pkgver \ @@ -35,10 +35,6 @@ build() { cmake --build build } -check() { - ctest --test-dir build --output-on-failure -} - package() { DESTDIR="$pkgdir" cmake --install build } |