mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-17 01:37:53 +00:00
Update PKGBUILD
This commit is contained in:
parent
72f33da508
commit
fde578aac9
1 changed files with 10 additions and 7 deletions
17
PKGBUILD
17
PKGBUILD
|
@ -1,29 +1,32 @@
|
||||||
# Maintainer: wowario <wowario[at]protonmail[dot]com>
|
# Maintainer: wowario <wowario[at]protonmail[dot]com>
|
||||||
# Contributor: wowario <wowario[at]protonmail[dot]com>
|
# Contributor: wowario <wowario[at]protonmail[dot]com>
|
||||||
|
|
||||||
pkgbase='monero-feather-git'
|
|
||||||
pkgname='monero-feather-git'
|
pkgname='monero-feather-git'
|
||||||
pkgver='v0.1.0.0.ca5b1df7df'
|
pkgver=0.1.0.925ef5683
|
||||||
pkgrel='1'
|
pkgrel=1
|
||||||
pkgdesc='a free Monero desktop wallet'
|
pkgdesc='a free Monero desktop wallet'
|
||||||
license=('BSD')
|
license=('BSD')
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
url="https://featherwallet.org"
|
url="https://featherwallet.org"
|
||||||
depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'zeromq' 'pcsclite' 'hidapi' 'protobuf' 'miniupnpc' 'libgcrypt' 'qrencode' 'ccache' 'libsodium' 'libpgm' 'expat' 'qt5-base' 'qt5-websockets' 'tor')
|
depends=('boost-libs' 'libunwind' 'openssl' 'readline' 'pcsclite' 'hidapi' 'protobuf' 'miniupnpc' 'libgcrypt' 'qrencode' 'libsodium' 'libpgm' 'expat' 'qt5-base' 'qt5-websockets' 'tor')
|
||||||
makedepends=('git' 'cmake' 'boost')
|
makedepends=('git' 'cmake' 'boost')
|
||||||
provides=('monero-feather-git')
|
|
||||||
|
|
||||||
source=("${pkgname}"::"git+https://git.wownero.com/feather/feather")
|
source=("${pkgname}"::"git+https://git.wownero.com/feather/feather")
|
||||||
|
|
||||||
sha256sums=('SKIP')
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
pkgver() {
|
||||||
|
cd "${srcdir}/${pkgname}"
|
||||||
|
printf "%s.%s" "$(git describe --tags --abbrev=0)" "$(git rev-parse --short=9 HEAD)"
|
||||||
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "${srcdir}/${pkgname}"
|
cd "${srcdir}/${pkgname}"
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
mkdir build
|
mkdir -p build
|
||||||
cd build
|
cd build
|
||||||
cmake ..
|
cmake ..
|
||||||
make -j2
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
package_monero-feather-git() {
|
package_monero-feather-git() {
|
||||||
|
|
Loading…
Reference in a new issue