diff options
author | zxp19821005 | 2024-05-30 09:22:54 +0800 |
---|---|---|
committer | zxp19821005 | 2024-05-30 09:22:54 +0800 |
commit | 2965e855e953cb8eef40fbe5c4ab8065d2704aad (patch) | |
tree | 20bf2b7b6821c2ab38616ffabc9ed103ffb03131 | |
parent | dd3cec7a83f38b7892c0afe3b86f34848209d1d9 (diff) | |
download | aur-2965e855e953cb8eef40fbe5c4ab8065d2704aad.tar.gz |
update to 0.8.0
-rw-r--r-- | .SRCINFO | 14 | ||||
-rw-r--r-- | PKGBUILD | 14 |
2 files changed, 14 insertions, 14 deletions
@@ -1,18 +1,18 @@ pkgbase = qcalc-bin pkgdesc = Quasar Calculator - pkgver = 0.7.2_fix1 - pkgrel = 6 + pkgver = 0.8.0 + pkgrel = 1 url = https://github.com/from104/qcalc arch = x86_64 license = MIT makedepends = fuse2 - depends = electron25 - provides = qcalc=0.7.2_fix1 + depends = electron28 + provides = qcalc=0.8.0 conflicts = qcalc - source = qcalc-0.7.2_fix1.AppImage::https://github.com/from104/qcalc/releases/download/v0.7.2fix1/Q.Calc-0.7.2-fix1.AppImage - source = LICENSE-0.7.2_fix1::https://raw.githubusercontent.com/from104/qcalc/v0.7.2fix1/LICENSE + source = qcalc-0.8.0.AppImage::https://github.com/from104/qcalc/releases/download/v0.8.0/Q.Calc-0.8.0.AppImage + source = LICENSE-0.8.0::https://raw.githubusercontent.com/from104/qcalc/v0.8.0/LICENSE source = qcalc.sh - sha256sums = 67cbc654697f77918822d77452319591f75367d8b73522febc13d7c8b60387bc + sha256sums = da7f13baffb857570b2f5d91f5eda032b97f36e3f3603d34ecfdf19e1197b454 sha256sums = 3987b48fb3c79907511fb74614201dbf40f9bff0cc691d4f2dbcad754cba519b sha256sums = 2b2e8aeed33fd71c521e49fd54fb2fa81218d16aef8bccb88d77909055ab8051 @@ -1,9 +1,9 @@ # Maintainer: zxp19821005 <zxp19821005 at 163 dot com> pkgname=qcalc-bin _pkgname="Q Calc" -pkgver=0.7.2_fix1 -_electronversion=25 -pkgrel=6 +pkgver=0.8.0 +_electronversion=28 +pkgrel=1 pkgdesc="Quasar Calculator" arch=('x86_64') url="https://github.com/from104/qcalc" @@ -17,11 +17,11 @@ makedepends=( 'fuse2' ) source=( - "${pkgname%-bin}-${pkgver}.AppImage::${url}/releases/download/v${pkgver//_/}/Q.Calc-${pkgver//_/-}.AppImage" - "LICENSE-${pkgver}::https://raw.githubusercontent.com/from104/qcalc/v${pkgver//_/}/LICENSE" + "${pkgname%-bin}-${pkgver}.AppImage::${url}/releases/download/v${pkgver}/${_pkgname// /.}-${pkgver-}.AppImage" + "LICENSE-${pkgver}::https://raw.githubusercontent.com/from104/qcalc/v${pkgver}/LICENSE" "${pkgname%-bin}.sh" ) -sha256sums=('67cbc654697f77918822d77452319591f75367d8b73522febc13d7c8b60387bc' +sha256sums=('da7f13baffb857570b2f5d91f5eda032b97f36e3f3603d34ecfdf19e1197b454' '3987b48fb3c79907511fb74614201dbf40f9bff0cc691d4f2dbcad754cba519b' '2b2e8aeed33fd71c521e49fd54fb2fa81218d16aef8bccb88d77909055ab8051') build() { @@ -29,7 +29,7 @@ build() { -e "s|@appname@|${pkgname%-bin}|g" \ -e "s|@runname@|app.asar|g" \ -e "s|@cfgdirname@|${_pkgname}|g" \ - -e "s|@options@||g" \ + -e "s|@options@|env ELECTRON_OZONE_PLATFORM_HINT=auto|g" \ -i "${srcdir}/${pkgname%-bin}.sh" chmod a+x "${srcdir}/${pkgname%-bin}-${pkgver}.AppImage" "${srcdir}/${pkgname%-bin}-${pkgver}.AppImage" --appimage-extract > /dev/null |