2020-10-12 08:51:59 +00:00
|
|
|
# Maintainer: wowario <wowario[at]protonmail[dot]com>
|
|
|
|
# Contributor: wowario <wowario[at]protonmail[dot]com>
|
2022-07-07 16:54:02 +00:00
|
|
|
# Contributor: tobtoht <dev@featherwallet.org>
|
2020-10-12 08:51:59 +00:00
|
|
|
|
2020-11-25 19:19:13 +00:00
|
|
|
pkgname='monero-feather-git'
|
2022-07-07 16:54:02 +00:00
|
|
|
pkgver=2.0.0
|
2020-11-30 19:22:53 +00:00
|
|
|
pkgrel=1
|
2021-07-14 16:02:50 +00:00
|
|
|
pkgdesc='A free Monero desktop wallet'
|
2020-10-12 08:51:59 +00:00
|
|
|
license=('BSD')
|
|
|
|
arch=('x86_64')
|
|
|
|
url="https://featherwallet.org"
|
2022-07-07 16:54:02 +00:00
|
|
|
depends=('libzip' 'boost-libs' 'libunwind' 'openssl' 'hidapi' 'protobuf' 'libusb' 'libudev.so' 'libgcrypt'
|
|
|
|
'qrencode' 'libsodium' 'expat' 'qt6-base' 'qt6-websockets' 'qt6-svg' 'tor' 'zbar' 'unbound')
|
2020-10-12 08:51:59 +00:00
|
|
|
makedepends=('git' 'cmake' 'boost')
|
|
|
|
|
2022-02-03 14:19:50 +00:00
|
|
|
source=("${pkgname}"::"git+https://github.com/feather-wallet/feather")
|
2020-10-12 08:51:59 +00:00
|
|
|
|
|
|
|
sha256sums=('SKIP')
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/${pkgname}"
|
2020-11-25 19:19:13 +00:00
|
|
|
git submodule update --init --recursive
|
2021-07-14 16:02:50 +00:00
|
|
|
make release
|
2020-10-12 08:51:59 +00:00
|
|
|
}
|
|
|
|
|
2020-11-25 19:19:13 +00:00
|
|
|
package_monero-feather-git() {
|
2020-10-12 08:51:59 +00:00
|
|
|
install -Dm644 "${srcdir}/${pkgname}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
2021-07-14 16:02:50 +00:00
|
|
|
install -Dm755 "${srcdir}/${pkgname}/build/release/bin/feather" "${pkgdir}/usr/bin/feather"
|
2021-05-02 18:22:38 +00:00
|
|
|
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"
|
2021-07-14 16:02:50 +00:00
|
|
|
}
|