upgpkg: grimblast-2025.09.29-1: new upstream release

This commit is contained in:
Christian Schendel 2025-09-29 11:06:28 +02:00
parent 0198c7373f
commit 37afb1b15c
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3
2 changed files with 13 additions and 13 deletions

View file

@ -1,14 +1,14 @@
pkgbase = grimblast
pkgdesc = A helper for screenshots within Hyprland.
pkgver = 2025.09.22
pkgver = 2025.09.29
pkgrel = 1
url = https://github.com/hyprwm/contrib
arch = any
license = MIT
makedepends = scdoc
makedepends = git
source = grimblast-2025.09.22::git+https://github.com/hyprwm/contrib.git#commit=de79078fd59140067e53cd00ebdf17f96ce27846
b2sums = 131a48b0b0b29535681951c1d977e6720944073bfc058623e499695fcdba4278bf2faad46e03368f1dc43c001c1dfa3d0c786f0e1d84404f8a07e0977dcc592e
source = grimblast-2025.09.29::git+https://github.com/hyprwm/contrib.git#commit=125043bea28e5f988f4e97250213948667a26b1c
b2sums = 7f5c003e0b5335ab1ce04e4a4efda57c6905e152b2775d285ba8a754f759dc11dece627fb08e8712f7331b0d3bf1005e15fe7506a214b5ac27a86b9681f55fc9
pkgname = grimblast
depends = bash

View file

@ -3,8 +3,8 @@
# Contributor: Struan Robertson <struanrobertson@protonmail.com>
pkgname=grimblast
pkgver=2025.09.22
_commit="de79078fd59140067e53cd00ebdf17f96ce27846" # 2025-09-22
pkgver=2025.09.29
_commit="125043bea28e5f988f4e97250213948667a26b1c" # 2025-09-29
pkgrel=1
pkgdesc="A helper for screenshots within Hyprland."
arch=(any)
@ -12,18 +12,17 @@ url="https://github.com/hyprwm/contrib"
license=(
MIT
)
makedepends=(
scdoc
git
)
source=(
"$pkgname-$pkgver::git+$url.git#commit=$_commit"
"${pkgname}-${pkgver}::git+${url}.git#commit=${_commit}"
)
b2sums=('131a48b0b0b29535681951c1d977e6720944073bfc058623e499695fcdba4278bf2faad46e03368f1dc43c001c1dfa3d0c786f0e1d84404f8a07e0977dcc592e')
b2sums=('7f5c003e0b5335ab1ce04e4a4efda57c6905e152b2775d285ba8a754f759dc11dece627fb08e8712f7331b0d3bf1005e15fe7506a214b5ac27a86b9681f55fc9')
build() {
cd "$srcdir/$pkgname-$pkgver/$pkgname"
cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
scdoc < grimblast.1.scd > grimblast.1
}
@ -36,11 +35,12 @@ package() {
jq
slurp
)
cd "$srcdir/$pkgname-$pkgver/$pkgname"
cd "${srcdir}/${pkgname}-${pkgver}/${pkgname}"
install -Dm0644 $pkgname.1 "$pkgdir/usr/share/man/man1/$pkgname.1"
install -Dm0755 $pkgname "$pkgdir/usr/bin/$pkgname"
install -Dm0644 "$srcdir/$pkgname-$pkgver/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
install -Dm0644 ${pkgname}.1 "$pkgdir/usr/share/man/man1/${pkgname}.1"
install -Dm0755 ${pkgname} "$pkgdir/usr/bin/${pkgname}"
install -Dm0644 "$srcdir/${pkgname}-${pkgver}/LICENSE" \
"$pkgdir/usr/share/licenses/${pkgname}/LICENSE"
}
# vim: set ft=sh ts=4 sw=4 et: