summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorzxp198210052023-12-08 18:16:02 +0800
committerzxp198210052023-12-08 18:16:02 +0800
commit9eb579b380feadd93982a6ca6c9d9f08693a04a0 (patch)
treee857bf983b0663a81abd257909f7d4dcf2a58236
parentcf5c3404eca5e3b23767fde87de3e9bd986923a0 (diff)
downloadaur-9eb579b380feadd93982a6ca6c9d9f08693a04a0.tar.gz
fix errors
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD20
2 files changed, 16 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ed85e2554ac4..92439bd69d53 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = minedigger-bin
pkgdesc = Simple match-3 game prototype for Linux, Windows and Android
pkgver = 1.0
- pkgrel = 2
+ pkgrel = 3
url = https://play.google.com/store/apps/details?id=com.neodesys.minedigger
arch = x86_64
license = GPL3
@@ -12,8 +12,6 @@ pkgbase = minedigger-bin
depends = libvorbis
depends = libjpeg-turbo
depends = libpng
- depends = glibc
- depends = gcc-libs
provides = minedigger=1.0
conflicts = minedigger
source = minedigger-1.0.tgz::https://github.com/neodesys/MineDigger/releases/download/v1.0/MineDigger_linux64.tgz
diff --git a/PKGBUILD b/PKGBUILD
index 05de69310fa8..c4514d72f9a8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,17 +2,27 @@
pkgname=minedigger-bin
_pkgname=MineDigger
pkgver=1.0
-pkgrel=2
+pkgrel=3
pkgdesc="Simple match-3 game prototype for Linux, Windows and Android"
arch=('x86_64')
url="https://play.google.com/store/apps/details?id=com.neodesys.minedigger"
-_githuburl="https://github.com/neodesys/MineDigger"
+_ghurl="https://github.com/neodesys/MineDigger"
license=('GPL3')
provides=("${pkgname%-bin}=${pkgver}")
conflicts=("${pkgname%-bin}")
-depends=('sdl2' 'sdl2_image' 'sdl2_mixer' 'sdl2_ttf' 'libvorbis' 'libjpeg-turbo' 'libpng' 'glibc' 'gcc-libs')
-source=("${pkgname%-bin}-${pkgver}.tgz::${_githuburl}/releases/download/v${pkgver}/${_pkgname}_linux64.tgz"
- "${pkgname%-bin}.png")
+depends=(
+ 'sdl2'
+ 'sdl2_image'
+ 'sdl2_mixer'
+ 'sdl2_ttf'
+ 'libvorbis'
+ 'libjpeg-turbo'
+ 'libpng'
+)
+source=(
+ "${pkgname%-bin}-${pkgver}.tgz::${_ghurl}/releases/download/v${pkgver}/${_pkgname}_linux64.tgz"
+ "${pkgname%-bin}.png"
+)
sha256sums=('8d88a7a1d9d4547789f9f828632aca4273e09ca72799c4c7238af3e850d3b1ae'
'e544a0f449e2e13fd4d5367d1ae4bcf9dd85c93cf9057189477bc282c4b5fff0')
build() {