feather/PKGBUILD

33 lines
1.2 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-05-02 18:22:38 +00:00
pkgver=0.5.0.d1bb4c143f
2020-11-30 19:22:53 +00:00
pkgrel=1
2020-11-25 19:19:13 +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-05-02 18:22:38 +00:00
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')
2020-10-12 08:51:59 +00:00
makedepends=('git' 'cmake' 'boost')
2021-02-15 18:51:32 +00:00
source=("${pkgname}"::"git+https://git.featherwallet.org/feather/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
2020-11-30 19:22:53 +00:00
mkdir -p build
2020-11-25 19:19:13 +00:00
cd build
cmake ..
2020-11-30 19:22:53 +00:00
make
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"
install -Dm755 "${srcdir}/${pkgname}/build/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"
2020-10-12 08:51:59 +00:00
}