From 49c32af46b1e9314f52b2cff7802fbda741ecb10 Mon Sep 17 00:00:00 2001 From: Lian Date: Thu, 5 Feb 2026 10:14:15 +0800 Subject: [PATCH] update lianwall-bin v4.0.0 --- .SRCINFO | 11 +++++++++++ PKGBUILD | 17 +++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..004ae108f728 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,11 @@ +pkgbase = lianwall-bin + pkgdesc = Selects wallpapers using the golden angle algorithm, sprinkled with Lian's magic + pkgver = 4.0.0 + pkgrel = 1 + url = https://github.com/Yueosa/lianwall + arch = x86_64 + license = MIT + source = https://github.com/Yueosa/lianwall/releases/download/v4.0.0/lianwall_4.0.0_linux_x86_64 + sha256sums = 5be9c5f16d3403a1ead55313ffa226a0014a8f8e5bce00d8c7fce929318ed1f1 + +pkgname = lianwall-bin diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..64784d8dc9f4 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,17 @@ +# Maintainer: Lian +pkgname=lianwall-bin +pkgver=4.0.0 +pkgrel=1 +pkgdesc="Selects wallpapers using the golden angle algorithm, sprinkled with Lian's magic" +arch=('x86_64') +url="https://github.com/Yueosa/lianwall" +license=('MIT') +depends=() +source=("https://github.com/Yueosa/lianwall/releases/download/v$pkgver/lianwall_${pkgver}_linux_x86_64") +sha256sums=('5be9c5f16d3403a1ead55313ffa226a0014a8f8e5bce00d8c7fce929318ed1f1') + +package() { + mkdir -p "$pkgdir"/usr/bin + install -Dm755 "lianwall_${pkgver}_linux_x86_64" "$pkgdir"/usr/bin/lianwall +} +