From d2b0e401318a13d336db91daaf293bb1800cada7 Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Wed, 16 Aug 2023 16:17:57 +0200 Subject: [PATCH 1/2] README: mention the Debian package on the README --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bfc1e3d96..6e4ec76e4 100644 --- a/README.md +++ b/README.md @@ -44,10 +44,12 @@ source, see [`doc/BUILD.md`](doc/BUILD.md) instead. Head to the [release page](https://github.com/wizardsardine/liana/releases) and download the right executable for your platform. If you are not sure what is the "right" executable for your platform, choose: -- `Liana.zip` if you are on MacOS, - `liana-1.1.exe` if you are on Windows, -- `liana-1.1-x86_64-linux-gnu.tar.gz` if you are on Linux. Note you may have to compile the software - yourself if you are on Linux. See the [section below](#a-note-on-linux-binaries-and-glibc-version). +- `liana_1.1-1_amd64.deb` if you are running a Debian-based Linux (such as Ubuntu). Use `apt install + ./liana_1.1-1_amd64.deb` as root (or preceded by `sudo`) to install it. +- `liana-1.1-x86_64-linux-gnu.tar.gz` if you use another Linux distribution. Note you may have to + compile the software yourself if you are on Linux. See the [section + below](#a-note-on-linux-binaries-and-glibc-version). For every file available on the release page, there is an accompanying `.asc` file with the same name. This is a GPG signature made with Antoine Poinsot's key: From b6c71ebe6ab70c7cd4492632cd175fbaddb84b12 Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Fri, 25 Aug 2023 14:37:56 +0200 Subject: [PATCH 2/2] contrib: fixup the Debian package creation in the release script --- contrib/release/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/release/release.sh b/contrib/release/release.sh index 87f7f5ecb..a8e3c9aa4 100755 --- a/contrib/release/release.sh +++ b/contrib/release/release.sh @@ -44,7 +44,7 @@ TARGET_DIR="$BUILD_DIR" ./contrib/reproducible/docker/docker-build.sh unzip ../contrib/release/debian/package.zip sed -i "s/VERSION_PLACEHOLDER/$VERSION/g" ./package/DEBIAN/control - cp "$BUILD_DIR/release/lianad" "$BUILD_DIR/release/liana-cli" "$BUILD_DIR/gui/release/liana-gui" ../README.md ./package/usr/local/bin/ + cp "$BUILD_DIR/release/lianad" "$BUILD_DIR/release/liana-cli" "$BUILD_DIR/gui/release/liana-gui" ../README.md ./package/usr/bin/ DIRNAME="liana_$VERSION-1_amd64" mv ./package "$DIRNAME" dpkg-deb --build "$DIRNAME"