summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorjahway6032021-07-16 23:57:18 -0400
committerjahway6032021-07-16 23:57:18 -0400
commit4031fb15b5c0c0dcaffd26ba299f4f8afe28a32f (patch)
treed42d96f86bace21ce188ab255554c79b7e7d814f
parent69c0d534cec9460b3bd0896d4871132fad001237 (diff)
downloadaur-4031fb15b5c0c0dcaffd26ba299f4f8afe28a32f.tar.gz
added hush-smart-chain missing from upstream deb file
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD11
2 files changed, 10 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a7fd486eb055..20fa33940062 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = hush3-bin
pkgdesc = HUSH (Privacy Cryptocurrency and Messenger) full node that supports z-addresses
pkgver = 3.8.0
- pkgrel = 1
+ pkgrel = 2
url = http://git.hush.is/hush/hush3
arch = x86_64
license = GPL3
@@ -13,7 +13,9 @@ pkgbase = hush3-bin
conflicts = hush3
source = hush-3.8.0-amd64.deb::https://git.hush.is/attachments/28a44c53-636e-4f07-91ef-0b8c4d07f604
source = http://git.hush.is/hush/hush3/raw/branch/master/LICENSE
+ source = http://git.hush.is/hush/hush3/raw/branch/master/src/hush-smart-chain
sha256sums = e80d61509343f1a9c4744aa7f04046e34012a983342e8f5145ed293b1bf79a0f
sha256sums = 6eae06cda3a8320e607ac0ee96cbdfc52b977463151ff4d5b119a26ee0cf666d
+ sha256sums = c7afef544ec5c462b33996fdbd746932e7be3428c2addfad0da3a97ba1b737cf
pkgname = hush3-bin
diff --git a/PKGBUILD b/PKGBUILD
index b80a42d13e70..6918a36b35cd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=hush3-bin
_pkgname=hush3
pkgver=3.8.0
-pkgrel=1
+pkgrel=2
pkgdesc='HUSH (Privacy Cryptocurrency and Messenger) full node that supports z-addresses'
url='http://git.hush.is/hush/hush3'
arch=('x86_64')
@@ -12,20 +12,23 @@ depends=('libsodium' 'lib32-zlib')
makedepends=('wget' 'git' 'curl')
conflicts=('hush3')
source=("hush-$pkgver-amd64.deb::https://git.hush.is/attachments/28a44c53-636e-4f07-91ef-0b8c4d07f604"
- "$url/raw/branch/master/LICENSE")
+ "$url/raw/branch/master/LICENSE"
+ "$url/raw/branch/master/src/hush-smart-chain")
sha256sums=('e80d61509343f1a9c4744aa7f04046e34012a983342e8f5145ed293b1bf79a0f'
- '6eae06cda3a8320e607ac0ee96cbdfc52b977463151ff4d5b119a26ee0cf666d')
+ '6eae06cda3a8320e607ac0ee96cbdfc52b977463151ff4d5b119a26ee0cf666d'
+ 'c7afef544ec5c462b33996fdbd746932e7be3428c2addfad0da3a97ba1b737cf')
package() {
# extract from deb file
tar -xf "$srcdir/data.tar.xz"
install -Dm644 "${srcdir}/LICENSE" "$pkgdir/usr/share/licenses/$_pkgname/LICENSE"
+ install -Dm755 "${srcdir}/hush-smart-chain" "$pkgdir/opt/$_pkgname/hush-smart-chain"
# install required scripts
install -Dm755 "${srcdir}/usr/bin/hush-cli" "${pkgdir}/opt/$_pkgname/hush-cli"
install -Dm755 "${srcdir}/usr/bin/hushd" "${pkgdir}/opt/$_pkgname/hushd"
- #install -Dm755 "${srcdir}/usr/bin/hush-smart-chain" "${pkgdir}/opt/$_pkgname/hush-smart-chain" # missing from this release
+ #install -Dm755 "${srcdir}/usr/bin/hush-smart-chain" "${pkgdir}/opt/$_pkgname/hush-smart-chain" # missing from this dpkg release
install -Dm755 "${srcdir}/usr/bin/hush-tx" "${pkgdir}/opt/$_pkgname/hush-tx"
install -Dm755 "${srcdir}/usr/bin/hush-komodo-cli" "${pkgdir}/opt/$_pkgname/hush-komodo-cli"
install -Dm755 "${srcdir}/usr/bin/hush-komodod" "${pkgdir}/opt/$_pkgname/hush-komodod"