diff options
author | Mattias Andrée | 2024-10-16 21:40:51 +0200 |
---|---|---|
committer | Mattias Andrée | 2024-10-16 21:40:51 +0200 |
commit | 41a0f935eedd11ce956d836059c7d7ad781c2f4b (patch) | |
tree | 8b5b3d3b9866c8d8dcd9d8997b4e5d9f5fae7718 | |
parent | bf6fd313a8cbd497d0eeaa77f07b9137c785cdb9 (diff) | |
download | aur-41a0f935eedd11ce956d836059c7d7ad781c2f4b.tar.gz |
Update to 1.0.2
-rw-r--r-- | .SRCINFO | 10 | ||||
-rw-r--r-- | PKGBUILD | 14 |
2 files changed, 12 insertions, 12 deletions
@@ -1,8 +1,8 @@ pkgbase = radharc - pkgdesc = Adjusts the color temperature of according to the sun's position - pkgver = 1.0.1 + pkgdesc = Adjusts the colour temperature of according to the Sun's position + pkgver = 1.0.2 pkgrel = 1 - url = https://github.com/maandree/radharc + url = https://codeberg.org/maandree/radharc arch = i686 arch = x86_64 license = ISC @@ -11,7 +11,7 @@ pkgbase = radharc makedepends = libred depends = libcoopgamma depends = libred - source = radharc-1.0.1.tar.gz::https://github.com/maandree/radharc/archive/1.0.1.tar.gz - sha256sums = 248190dbad93f2da390f8e5633f0f6ca9672c8f50807388bd51efc36fb1cd3b7 + source = radharc-1.0.2.tar.gz::https://codeberg.org/maandree/radharc/archive/1.0.2.tar.gz + sha256sums = c208f469293632cfceda52917b8a8beadb85e18141805f653ea998a8b75aff6a pkgname = radharc @@ -1,24 +1,24 @@ # Maintainer: Mattias Andrée <m@`base64 -d`(bWFhbmRyZWU).se> pkgname=radharc -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 -pkgdesc="Adjusts the color temperature of according to the sun's position" +pkgdesc="Adjusts the colour temperature of according to the Sun's position" arch=(i686 x86_64) -url="https://github.com/maandree/radharc" +url="https://codeberg.org/maandree/radharc" license=('ISC') depends=(libcoopgamma libred) makedepends=(libcoopgamma libclut libred) source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz) -sha256sums=(248190dbad93f2da390f8e5633f0f6ca9672c8f50807388bd51efc36fb1cd3b7) +sha256sums=(c208f469293632cfceda52917b8a8beadb85e18141805f653ea998a8b75aff6a) build() { - cd "$srcdir/$pkgname-$pkgver" + cd "$srcdir/$pkgname" make DESTDIR="$pkgdir" } package() { - cd "$srcdir/$pkgname-$pkgver" - make install DESTDIR="$pkgdir" + cd "$srcdir/$pkgname" + make DESTDIR="$pkgdir" install } |