blob: 1c7e6501bf7683750087d0fe878e7869f9e0c1c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Maintainer: Ms. Haze <ms-haze@riseup.net>
pkgname=pacupdate-git
pkgver=r1.a84a9af1
pkgrel=2
pkgdesc="Update all packages using Paru - automatically avoids some common issues when updating normally."
url="https://gitlab.com/MayESchaefer/pacupdate"
license=("GPL-3.0-or-later")
source=("git+$url")
md5sums=("SKIP")
arch=('any')
depends=("paru" "bash")
makedepends=("git")
package() {
cd "$srcdir/pacupdate"
install -Dm755 --no-target-directory "pacupdate.sh" "${pkgdir}/usr/bin/pacupdate"
}
|