mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-17 09:47:36 +00:00
32 lines
1.2 KiB
Bash
32 lines
1.2 KiB
Bash
# Maintainer: wowario <wowario[at]protonmail[dot]com>
|
|
# Contributor: wowario <wowario[at]protonmail[dot]com>
|
|
|
|
pkgname='monero-feather-git'
|
|
pkgver=0.5.0.d1bb4c143f
|
|
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' 'libusb' 'libudev.so' 'miniupnpc' 'libgcrypt' 'qrencode' 'libsodium' 'libpgm' 'expat' 'qt5-base' 'qt5-websockets' 'qt5-svg' 'tor' 'libzip')
|
|
makedepends=('git' 'cmake' 'boost')
|
|
|
|
source=("${pkgname}"::"git+https://git.featherwallet.org/feather/feather")
|
|
|
|
sha256sums=('SKIP')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}"
|
|
git submodule update --init --recursive
|
|
mkdir -p build
|
|
cd build
|
|
cmake ..
|
|
make
|
|
}
|
|
|
|
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"
|
|
install -Dm644 "${srcdir}/${pkgname}/src/assets/feather.desktop" "${pkgdir}/usr/share/applications/feather.desktop"
|
|
install -Dm644 "${srcdir}/${pkgname}/src/assets/images/feather.png" "${pkgdir}/usr/share/pixmaps/feather.png"
|
|
}
|