bump to electron23, which seems to work

This commit is contained in:
Nemo 2023-06-26 14:40:24 +05:30
parent a0c4efcff0
commit 0fb6503616
2 changed files with 5 additions and 6 deletions

View File

@ -1,12 +1,12 @@
pkgbase = notable-insiders-electron pkgbase = notable-insiders-electron
pkgdesc = Insider build of the Notable note-taking app pkgdesc = Insider build of the Notable note-taking app
pkgver = 1.9.0.beta.10 pkgver = 1.9.0.beta.10
pkgrel = 3 pkgrel = 4
url = https://github.com/notable/notable-insiders url = https://github.com/notable/notable-insiders
arch = any arch = any
license = UNLICENSED license = UNLICENSED
makedepends = asar makedepends = asar
depends = electron20 depends = electron23
depends = sh depends = sh
provides = notable provides = notable
conflicts = notable-insiders-bin conflicts = notable-insiders-bin

View File

@ -1,11 +1,10 @@
# Maintainer: Nemo <archlinux at captnemo dot in> # Maintainer: Nemo <archlinux at captnemo dot in>
pkgname=notable-insiders-electron pkgname=notable-insiders-electron
pkgdesc='Insider build of the Notable note-taking app' pkgdesc='Insider build of the Notable note-taking app'
_electron=electron20 _electron=electron23
packager="nemo"
_pkgver="1.9.0-beta.10" _pkgver="1.9.0-beta.10"
pkgver=${_pkgver/-/.} pkgver=${_pkgver/-/.}
pkgrel=3 pkgrel=4
arch=('any') arch=('any')
url='https://github.com/notable/notable-insiders' url='https://github.com/notable/notable-insiders'
license=('UNLICENSED') license=('UNLICENSED')
@ -26,7 +25,7 @@ build() {
cat > notable.sh <<EOF cat > notable.sh <<EOF
#!/bin/sh #!/bin/sh
exec $_electron /usr/lib/${pkgname} "\$@"x exec $_electron /usr/lib/${pkgname} "\$@"
EOF EOF
chmod +x notable.sh chmod +x notable.sh
} }