summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorkevku2024-04-17 10:16:04 +0300
committerkevku2024-04-17 10:16:04 +0300
commitc7e474fa33bef54cbe4c0f608803803c165758dd (patch)
tree2ee6ec76710ab72da4c211f04f7d4903c78a63a9
parent7fca84b64fcc2a2e1cf630de6f969b1bafb4164a (diff)
downloadaur-c7e474fa33bef54cbe4c0f608803803c165758dd.tar.gz
correct locale
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ab09999cd94c..40c7b90f0808 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = web-eid-webextension
pkgdesc = Web eID browser extension
pkgver = 2.2.2
- pkgrel = 1
+ pkgrel = 2
url = https://web-eid.eu/
arch = any
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index 7f5f5b7379ba..36fa8a203bc5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgbase=web-eid-webextension
pkgname=("firefox-extension-web-eid" "chromium-extension-web-eid")
pkgver=2.2.2
-pkgrel=1
+pkgrel=2
pkgdesc="Web eID browser extension"
arch=('any')
url="https://web-eid.eu/"
@@ -60,7 +60,7 @@ package_chromium-extension-web-eid() {
openssl rsa -pubout -outform DER < "$pkgbase.pem" > "$pkgbase.pub" 2>/dev/null
crx_id=$(xxd -p -c0 "$pkgbase.crxid" | tr '0-9a-f' 'a-p')
cd chrome
- jq --ascii-output --arg key $(cat "../$pkgbase.pub" | base64 -w0) '. + {key: $key, default_locale: "en"}' manifest.json > manifest.json.new
+ jq --ascii-output --arg key $(cat "../$pkgbase.pub" | base64 -w0) '. + {key: $key}' manifest.json > manifest.json.new
mv manifest.json.new manifest.json
zip -qr -9 -X "../$pkgbase.zip" .
cd ..