Package Details: electron-cash-git 4.3.1.r92.g3f885aae7-1

Git Clone URL: https://aur.archlinux.org/electron-cash-git.git (read-only, click to copy)
Package Base: electron-cash-git
Description: Lightweight Bitcoin Cash wallet
Upstream URL: http://www.electroncash.org/
Licenses: MIT
Conflicts: electron-cash
Provides: electron-cash
Submitter: 0x647262
Maintainer: 0e4ef622
Last Packager: 0e4ef622
Votes: 7
Popularity: 0.000001
First Submitted: 2017-08-18 14:54 (UTC)
Last Updated: 2023-11-09 14:35 (UTC)

Latest Comments

« First ‹ Previous 1 2

LucidComplex commented on 2017-11-01 04:02 (UTC)

This package also requires `python2-pyqt5` apparently.

0x647262 commented on 2017-10-09 02:08 (UTC)

Thanks a bunch @fatmike! Would you mind if I added you as a co-maintainer on this package?

fatmike commented on 2017-10-08 08:14 (UTC)

Ok, this patch isn't needed anymore as the maintainer merged my pull request upstream.

fatmike commented on 2017-10-07 18:22 (UTC)

When trying to install this package beside electron, there are file conflicts. I suggest to apply the following diff to your PKGBUILD until upstream code gets refactored: diff --git a/PKGBUILD b/PKGBUILD index 9a386e9..5d7fe42 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -87,6 +87,11 @@ package() { msg2 'Cleaning up pkgdir...' find "${pkgdir}" -type d -name .git -exec rm -r '{}' + find "${pkgdir}" -type f -name .gitignore -exec rm -r '{}' + + + msg2 'Fixing file names...' + mv "${pkgdir}/usr/share/pixmaps/electron.png" "${pkgdir}/usr/share/pixmaps/${pkgname/-git/}.png" + mv "${pkgdir}/usr/share/applications/electron.desktop" "${pkgdir}/usr/share/applications/${pkgname/-git/}.desktop" + sed -i s/Icon=electron/Icon=electron-cash/g "${pkgdir}/usr/share/applications/${pkgname/-git/}.desktop" } # vim: ts=2 sw=2 et: