Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,22 @@ as on [his Twitter profile](https://twitter.com/darosior) or his [personal
website](http://download.darosior.ninja/darosior.pub). It is recommended you verify your download
against this key.

For Arch users, a `liana-bin` is also available at the [AUR](https://aur.archlinux.org/). For
instance if you use `paru`:
```
paru -S liana-bin
```
If you use `yay`:
```
yay -S liana-bin
```
Or manually:
```
git clone https://aur.archlinux.org/liana-bin.git
cd liana-bin
makepkg -si
```

#### A note on Linux binaries and glibc version

*Skip this section if you are not running Linux or don't plan on using a released binary.*
Expand Down
24 changes: 24 additions & 0 deletions contrib/release/archlinux/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Maintainer: Antoine Poinsot <My first name at wizardsardine.com>

pkgname=liana-bin
pkgver=1.0
pkgrel=1
pkgdesc="The Liana wallet (daemon and GUI). A Bitcoin wallet focused on recovery options."
arch=('x86_64')
url=https://github.com/wizardsardine/liana
license=('BSD')
# systemd-libs for libudev
depends=('glibc>=2.33' 'fontconfig>=2.12.6' 'freetype2>=2.8' 'systemd-libs')

binary_archive="https://github.com/wizardsardine/liana/releases/download/v$pkgver/liana-$pkgver-x86_64-linux-gnu.tar.gz"
source=("$binary_archive" "$binary_archive.asc")
validpgpkeys=("590B7292695AFFA5B672CBB2E13FC145CD3F4304")
sha256sums=("bd425e3e08fcb74b6d2d641c7f6bd553062d49dbd42898823082990f862de43b" "SKIP")

package() {
bin_folder="${srcdir}/liana-$pkgver-x86_64-linux-gnu"

install -D "$bin_folder/lianad" "${pkgdir}/usr/local/bin/lianad"
install -D "$bin_folder/liana-cli" "${pkgdir}/usr/local/bin/liana-cli"
install -D "$bin_folder/liana-gui" "${pkgdir}/usr/local/bin/liana-gui"
}