diff options
author | Bryan Malyn | 2024-04-28 13:56:39 -0500 |
---|---|---|
committer | Bryan Malyn | 2024-04-28 13:56:39 -0500 |
commit | f3a54bb94e63080891c00ae3ea63baa9ea2ce45a (patch) | |
tree | 325aed31017e408d8dcbd672219b87ad7d44195c /PKGBUILD | |
parent | 28f17dec3b3d619501eef907d60f0f72237ec410 (diff) | |
download | aur-f3a54bb94e63080891c00ae3ea63baa9ea2ce45a.tar.gz |
Update to 0.4.1
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -1,21 +1,23 @@ # Maintainer: Bryan Malyn <bim9262 at gmail dot com> pkgname=wl-gammarelay-rs -pkgver=0.3.2 -pkgrel=2 -pkgdesc="Like wl-gammarelay, but written in rust, runs on a single thread, has three times less SLOC and uses DBus (for simplicity)" +pkgver=0.4.1 +pkgrel=1 +pkgdesc="A simple program that provides DBus interface to control display temperature and brightness under wayland without flickering" makedepends=('cargo') arch=('x86_64') url="https://github.com/MaxVerevkin/wl-gammarelay-rs" -license=('GPL3') +license=('GPL-3.0-only') source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz") -sha256sums=('6931eccf49e466fb03d48a0df87ca53a0cfc46a900a44ac4d6e85de029aba8d0') -sha512sums=('029adde9d14a2577bd074ef3dcfecbd01f6443d3e05d9be8dab666f3425abbb9a830f5f216f5339d60d16d96424d911b6ea641064596f76cce7e1171adb80d3b') -b2sums=('31683320016850b0063aa612755bedbef2159af8c5ab124bc47d7235e9fd854d301256269a2b84baa6b9655657b46a6a9995ebf14f4c61fba9119ffb55aa3a40') +sha256sums=('42eec83de003c5f8c9c6c5abce3f0eadb80f5abb027d266bcc77183ecce14edc') +sha512sums=('de652cc3908f7386f0c96c6a8c1dd4d4ab6a7f7ef5c99af9456729c5e1cad3e70ff7344804046b9f1bf6a37adb56dad3a50851183934de97dd10b1cdf08cb4c5') +b2sums=('2dee927537a6117d0b6693e08bd39070f2b8a092acc2e1425497dd19db12e6fbdfd8cfea8ea0f3d80ccd794574faa0eabc3860cf290c140bbc9e8ee686b4ee08') build() { cd "$pkgname-$pkgver" + export RUSTUP_TOOLCHAIN=stable + export CARGO_TARGET_DIR=target cargo build --release --locked } |