Package Details: update-notifier 0.7.7-5

Git Clone URL: https://aur.archlinux.org/update-notifier.git (read-only, click to copy)
Package Base: update-notifier
Description: A simple pacman update notifier
Upstream URL: https://github.com/Chrysostomus/update-notifier
Licenses: custom:MIT
Submitter: ahmubashshir
Maintainer: kemelzaidan
Last Packager: kemelzaidan
Votes: 3
Popularity: 0.001970
First Submitted: 2020-06-12 09:48 (UTC)
Last Updated: 2023-06-22 21:08 (UTC)

Dependencies (11)

Sources (1)

Latest Comments

DN-debug commented on 2022-03-27 14:22 (UTC)

Hi @emilio-r,

With the latest changes in git-protocol, sourcing using git: will no longer work unless you have a valid key.

You can point to the master zip and change the relevant pkgname as below:

pkgname=update-notifier-master
_pkgname=update-notifier
pkgver=0.7.7
pkgrel=4
pkgdesc=“A simple pacman update notifier”
arch=(any)
url="https://github.com/Chrysostomus/$_pkgname"
license=(‘MIT’)
depends=(‘awk’
‘dunst>=1.3.2-2’
‘libnotify’
‘fakeroot’)
optdepends=(‘yaourt: for AUR support’
‘gnome-terminal: for integration with gnome-update-notifications’
‘pamac: for graphical update actions’
‘yay: for AUR support’
‘trizen: for AUR support’
‘pacaur: for AUR support’)
makedepends=(‘git’)
source=("${url}/archive/refs/heads/master.zip")
md5sums=(‘SKIP’)

package () {
cd “$srcdir”
install -Dm755 “$srcdir/$pkgname/update-notifier” “$pkgdir/usr/bin/update-notifier”
install -Dm755 “$srcdir/$pkgname/update-checker” “$pkgdir/usr/bin/update-checker”
install -Dm755 “$srcdir/$pkgname/update-check” “$pkgdir/usr/bin/update-check”
install -Dm755 “$srcdir/$pkgname/update-command” “$pkgdir/usr/bin/update-command”
install -Dm755 “$srcdir/$pkgname/update-help” “$pkgdir/usr/bin/update-help”
}

emilio-r commented on 2021-01-16 15:55 (UTC)

@recke96: Indeed, thanks for pointing it out. I just adopted this package and will update the PKGBUILD in the next few days.

recke96 commented on 2021-01-12 10:03 (UTC)

As far as I can see the update checker also supports yay, trizen and pacaur in addition to yaourt for aur update notifs so those should probably also be declared as optional dependency