From 657cd6340be2df4d626fea646e27b6c478643511 Mon Sep 17 00:00:00 2001 From: wowario Date: Mon, 12 Oct 2020 11:51:59 +0300 Subject: [PATCH] add AUR package file --- PKGBUILD | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 PKGBUILD diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..7ae0d75 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,34 @@ +# Maintainer: wowario +# Contributor: wowario + +pkgbase=('monero-feather-git') +pkgname=('monero-feather-git') +pkgver=v0.1.0.0.cd1cd5cb75 +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' 'base-devel' 'qt5-base') +makedepends=('git' 'cmake' 'boost') +provides=('monero-feather-git') + +source=("${pkgname}"::"git+https://git.wownero.com/feather/feather") + +sha256sums=('SKIP') + +pkgver() { + cd "$srcdir/$pkgname" + git describe --long --tags | sed 's/\([^-]*-\)g/r\1/;s/-/./g' +} + +build() { + cd "${srcdir}/${pkgname}" + mkdir build && cd build && cmake .. && make release-static -j2 +} + +package_feather-git() { + install -Dm644 "${srcdir}/${pkgname}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -Dm755 "${srcdir}/${pkgname}/build/bin/feather" "${pkgdir}/usr/bin/feather" +}