# Maintainer: wowario # Contributor: wowario pkgbase='monero-feather-git' pkgname='monero-feather-git' pkgver='v0.1.0.0.ca5b1df7df' pkgrel='1' pkgdesc='a free Monero desktop wallet' license=('BSD') arch=('x86_64') url="https://featherwallet.org" depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 'hidapi' 'protobuf' 'miniupnpc' 'libgcrypt' 'qrencode' 'ccache' 'libsodium' 'libpgm' 'expat' 'qt5-base' 'qt5-websockets' 'tor') makedepends=('git' 'cmake' 'boost') provides=('monero-feather-git') source=("${pkgname}"::"git+https://git.wownero.com/feather/feather") sha256sums=('SKIP') build() { cd "${srcdir}/${pkgname}" git submodule update --init --recursive mkdir build cd build cmake .. make -j2 } package_monero-feather-git() { install -Dm644 "${srcdir}/${pkgname}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" install -Dm755 "${srcdir}/${pkgname}/build/bin/feather" "${pkgdir}/usr/bin/feather" }