Autogenerated commit at 2024-01-25 11:11:26.921068

This commit is contained in:
ahriman 2024-01-25 11:11:26 +00:00
parent b37a1c69f7
commit bdd39c3719
2 changed files with 36 additions and 0 deletions

15
downgrade/.SRCINFO Normal file
View File

@ -0,0 +1,15 @@
pkgbase = downgrade
pkgdesc = Bash script for downgrading one or more packages to a version in your cache or the A.L.A.
pkgver = 11.3.0
pkgrel = 1
url = https://github.com/archlinux-downgrade/downgrade
arch = any
license = GPL
depends = pacman-contrib
depends = fzf
optdepends = sudo: for installation via sudo
backup = etc/xdg/downgrade/downgrade.conf
source = downgrade-v11.3.0.tar.gz::https://github.com/archlinux-downgrade/downgrade/archive/v11.3.0.tar.gz
md5sums = ca0c6958ef85116f96bb65e07cb26aff
pkgname = downgrade

21
downgrade/PKGBUILD Normal file
View File

@ -0,0 +1,21 @@
# shellcheck disable=SC2034
# shellcheck disable=SC2154
# Author: Patrick Brisbin <pbrisbin@gmail.com>
pkgname=downgrade
pkgver=11.3.0
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"
license=('GPL')
backup=(etc/xdg/downgrade/downgrade.conf)
source=("downgrade-v$pkgver.tar.gz::https://github.com/archlinux-downgrade/$pkgname/archive/v$pkgver.tar.gz")
depends=('pacman-contrib' 'fzf') # pacsort
optdepends=('sudo: for installation via sudo')
package() {
cd "$pkgname-$pkgver" || exit 1
make DESTDIR="$pkgdir" PREFIX=/usr install
}
md5sums=('ca0c6958ef85116f96bb65e07cb26aff')