feather/PKGBUILD

30 lines
1.1 KiB
Bash
Raw Normal View History

2020-10-12 08:51:59 +00:00
# Maintainer: wowario <wowario[at]protonmail[dot]com>
# Contributor: wowario <wowario[at]protonmail[dot]com>
2020-11-25 19:19:13 +00:00
pkgname='monero-feather-git'
2021-10-28 17:54:12 +00:00
pkgver=1.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"
2021-07-14 16:02:50 +00:00
depends=('libzip' 'boost-libs' 'libunwind' 'openssl' 'zeromq' 'hidapi' 'protobuf' 'libusb' 'libudev.so' 'libgcrypt'
'qrencode' 'libsodium' 'expat' 'qt5-base' 'qt5-websockets' 'qt5-svg' 'tor' 'zbar')
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
}