upgpkg: downgrade-11.5.5-1: new upstream release

This commit is contained in:
Christian Schendel 2025-11-19 13:14:28 +01:00
parent cbef1a1616
commit b4c046262f
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3
2 changed files with 9 additions and 9 deletions

View file

@ -1,17 +1,17 @@
# Maintainer: Christian Schendel <doppelhelix@gmail.com>
# Author: Patrick Brisbin <pbrisbin@gmail.com>
pkgname=downgrade
pkgver=11.5.4
pkgver=11.5.5
pkgrel=1
pkgdesc="Bash script for downgrading one or more packages to a version in your cache or the A.L.A."
arch=('any')
url="https://github.com/archlinux-downgrade/$pkgname"
url="https://github.com/archlinux-downgrade/${pkgname}"
license=(
GPL-2.0-or-later
)
backup=(etc/xdg/downgrade/downgrade.conf)
source=("https://github.com/archlinux-downgrade/$pkgname/releases/download/v${pkgver//_/-}/downgrade-${pkgver//_/-}.tar.gz")
b2sums=('cdf2dabaf3fa035830fc9815e1d6ff837a44af0dfecb0557c679f5b52fa354c1ae2c0c7d77e505591d98886c3c3d6bdd845d39ef5baada33e97e6fa1822d5b81')
source=("${url}/releases/download/v${pkgver//_/-}/downgrade-${pkgver//_/-}.tar.gz")
b2sums=('972244b880c8f5cb30a40727c6f8b6ec11659dcda3ce427aad540e991fd0bf026158242ba352cf040b888b28a2442f961119fcd04e6341f84fedb13fb8f6d6ef')
optdepends=(
'sudo: for installation via sudo'
)
@ -22,9 +22,9 @@ package() {
fzf
pacman-contrib
) # pacsort
cd "$pkgname-${pkgver//_/-}" || exit 1
cd "${pkgname}-${pkgver//_/-}" || exit 1
make DESTDIR="$pkgdir" PREFIX=/usr install
make DESTDIR="${pkgdir}" PREFIX=/usr install
}
# vim: set ft=sh ts=4 sw=4 et: