27 lines
1.1 KiB
Bash
27 lines
1.1 KiB
Bash
# Template file for 'Electron-Cash'
|
|
pkgname=Electron-Cash
|
|
version=4.2.3
|
|
revision=2
|
|
build_style=python3-module
|
|
hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"
|
|
depends="python3-PyQt5 python3-PyQt5-svg python3-qrcode python3-dateutil
|
|
python3-jsonrpclib python3-protobuf
|
|
python3-dnspython python3-requests python3-pysocks python3-stem
|
|
python3-ecdsa python3-pyaes python3-pycryptodome libbitcoin-secp256k1 libzbar"
|
|
short_desc="Lightweight Bitcoin Cash client"
|
|
maintainer="Cameron Nemo <cnemo@tutanota.com>"
|
|
license="MIT"
|
|
homepage="https://electroncash.org"
|
|
distfiles="https://github.com/Electron-Cash/Electron-Cash/releases/download/${version}/Electron-Cash-${version}.tar.gz"
|
|
checksum=4c2ea0884ec19a73368eea2081bd763db25cd5760feb23039a4bb61512c4e802
|
|
|
|
post_install() {
|
|
# TODO: build these binaries instead of having to remove pre-built ones
|
|
rm -f -- "${DESTDIR}/usr/lib/python${py3_ver}/site-packages/electroncash/tor/bin/tor"
|
|
|
|
for lib in zbar secp256k1; do
|
|
rm -f -- "${DESTDIR}/usr/lib/python${py3_ver}/site-packages/electroncash/lib${lib}.so.0"
|
|
done
|
|
vlicense LICENCE
|
|
}
|