diff options
author | sum01 | 2017-11-10 15:33:41 -0500 |
---|---|---|
committer | sum01 | 2017-11-10 15:35:59 -0500 |
commit | 8848cec7fcb67ff579ffe1a5b21171a18280fa0a (patch) | |
tree | a87fe13441b919002a10a0dd82c00c1cfcd7e143 | |
parent | be18fe25ee0a2f44360b2fd83bcbc172cc76a044 (diff) | |
download | aur-8848cec7fcb67ff579ffe1a5b21171a18280fa0a.tar.gz |
v0.22.3
Also format with shfmt & use editorconfig settings
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 16 |
2 files changed, 11 insertions, 11 deletions
@@ -1,6 +1,6 @@ pkgbase = buttercup-desktop pkgdesc = Javascript Password Vault - Multi-Platform Desktop Application - pkgver = 0.22.2 + pkgver = 0.22.3 pkgrel = 1 url = https://github.com/buttercup/buttercup-desktop arch = i686 @@ -14,9 +14,9 @@ pkgbase = buttercup-desktop depends = alsa-lib depends = libxss depends = nss - source = https://github.com/buttercup/buttercup-desktop/archive/v0.22.2.tar.gz + source = https://github.com/buttercup/buttercup-desktop/archive/v0.22.3.tar.gz source = buttercup-desktop.desktop - sha512sums = adf2ea2cd7ca063869f5672412a73b3a9a8a35dd28420be9b0fad29a5c9af21a017655d8c67c10e32f378eb4ca7cbcd1f890c98d80c85491af434ceb5f3f4c4d + sha512sums = 2cadf762295fc161eb1e8043f3240db45db332019d6ef795efa7d9eb233e963e65849ab83e800f86ed3fe2264eddded089e4db54d98fcb37e9eee304ac5e66c1 sha512sums = c358199263d908304b2fd55b69bfc7c0671a5287f2d0f978dbd7da89f350052fcd28ce16a32074adaee358e486763c0d4a0519734c2fd49debf5fc866a513ad3 pkgname = buttercup-desktop @@ -1,7 +1,7 @@ # Maintainer: sum01 <sum01@protonmail.com> # Contributor: j1simon pkgname=buttercup-desktop -pkgver=0.22.2 +pkgver=0.22.3 pkgrel=1 pkgdesc='Javascript Password Vault - Multi-Platform Desktop Application' arch=('i686' 'x86_64') @@ -10,18 +10,18 @@ license=('GPL3') depends=('gtk2' 'gconf' 'libxtst' 'alsa-lib' 'libxss' 'nss') makedepends=('npm' 'sed') source=("https://github.com/buttercup/buttercup-desktop/archive/v$pkgver.tar.gz" -"buttercup-desktop.desktop") -sha512sums=('adf2ea2cd7ca063869f5672412a73b3a9a8a35dd28420be9b0fad29a5c9af21a017655d8c67c10e32f378eb4ca7cbcd1f890c98d80c85491af434ceb5f3f4c4d' - 'c358199263d908304b2fd55b69bfc7c0671a5287f2d0f978dbd7da89f350052fcd28ce16a32074adaee358e486763c0d4a0519734c2fd49debf5fc866a513ad3') -prepare(){ + "buttercup-desktop.desktop") +sha512sums=('2cadf762295fc161eb1e8043f3240db45db332019d6ef795efa7d9eb233e963e65849ab83e800f86ed3fe2264eddded089e4db54d98fcb37e9eee304ac5e66c1' + 'c358199263d908304b2fd55b69bfc7c0671a5287f2d0f978dbd7da89f350052fcd28ce16a32074adaee358e486763c0d4a0519734c2fd49debf5fc866a513ad3') +prepare() { sed -i '/"rpm",/d' "$srcdir/$pkgname-$pkgver/package.json" sed -i '/"AppImage",/d' "$srcdir/$pkgname-$pkgver/package.json" sed -i 's/"deb"/"dir"/' "$srcdir/$pkgname-$pkgver/package.json" - if [[ "$CARCH" == "i686" ]]; then + if [[ $CARCH == "i686" ]]; then sed -i 's/build --linux --x64/build --linux --ia32/' "$srcdir/$pkgname-$pkgver/package.json" fi } -build(){ +build() { cd "$srcdir/$pkgname-$pkgver" npm install --cache "$srcdir/npm-cache" npm run build @@ -34,7 +34,7 @@ check() { package() { install -Dm644 "$srcdir/$pkgname-$pkgver/build/badge.svg" "$pkgdir/usr/share/icons/hicolor/scalable/apps/buttercup.svg" install -Dm644 "$srcdir/$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop" - if [[ "$CARCH" == "i686" ]]; then + if [[ $CARCH == "i686" ]]; then _distname="linux-ia32-unpacked" else _distname="linux-unpacked" |