Date: Saturday, December 14, 2019 @ 16:58:51 Author: kpcyrd Revision: 537666
archrelease: copy trunk to community-x86_64 Added: monero-gui/repos/community-x86_64/ monero-gui/repos/community-x86_64/PKGBUILD (from rev 537665, monero-gui/trunk/PKGBUILD) ----------+ PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) Copied: monero-gui/repos/community-x86_64/PKGBUILD (from rev 537665, monero-gui/trunk/PKGBUILD) =================================================================== --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2019-12-14 16:58:51 UTC (rev 537666) @@ -0,0 +1,38 @@ +# Maintainer: kpcyrd <kpcyrd[at]archlinux[dot]org> + +pkgname=monero-gui +pkgver=0.15.0.2 +pkgrel=2 +pkgdesc="Official QT GUI wallet for Monero, a private, secure, untraceable peer-to-peer currency" +license=('custom:Cryptonote') +arch=('x86_64') +url="https://getmonero.org/" +depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 'hidapi' 'unbound' + 'qt5-base' 'qt5-declarative' 'qt5-quickcontrols' 'qt5-svg') +makedepends=('git' 'cmake' 'boost' 'qt5-tools') +source=( + "${pkgname}"::"git+https://github.com/monero-project/monero-gui#tag=v${pkgver}" + "git+https://github.com/monero-project/monero.git" +) +sha512sums=('SKIP' + 'SKIP') + +prepare() { + cd "${pkgname}" + git submodule init + git config submodule.monero.url "$srcdir/monero" + git submodule update +} + +build() { + cd "${pkgname}" + QT_SELECT=5 ./build.sh +} + +package() { + cd "${pkgname}" + install -Dm755 build/release/bin/monero-wallet-gui -t "${pkgdir}/usr/bin" + install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}" +} + +# vim: ts=2 sw=2 et: