summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 975d7dce05d6e6f9f187f129dbc41c9fb05e3282 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Maintainer: wowario <wowario[at]protonmail[dot]com>
# Contributor: wowario <wowario[at]protonmail[dot]com>

pkgbase='monero-feather-git'
pkgname='monero-feather-git'
pkgver='v0.1.0.0.841739cee9'
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')
makedepends=('git' 'cmake' 'boost')
provides=('monero-feather-git')
monero-head='2fc0c6355d7f3756f9cc01f1165aeec42bc52201'

source=("${pkgname}"::"git+https://git.wownero.com/feather/feather")

sha256sums=('SKIP')

build() {
  cd "${srcdir}/${pkgname}/monero"
  git "checkout $monero-head"
  cd ..
  mkdir build
  cd build
  cmake ..
  make release-static -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"
}