wowlet/PKGBUILD

33 lines
1021 B
Bash
Raw Normal View History

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