# Maintainer: Erich Eckner pkgname=update-all pkgver=0.9.1 pkgrel=1 pkgdesc="Simple script for installing updated packages" arch=('any') url="https://git.eckner.net/Erich/${pkgname}" license=('GPL') groups=() OS=$( awk -F= '$1 == "ID" {print $2}' /etc/os-release ) _arch_depends=( 'archlinux-contrib' ) depends=( 'pacman-contrib' 'vim' ) if [ "${OS}" = 'arch' ]; then depends+=("${_arch_depends[@]}") fi makedepends=() checkdepends=() optdepends=( 'check-kernel: check if reboot is necessary after update' 'shutdownasap: allow for less-interuptive reboot' 'simple-package-report: allow for telemetry data upload' ) provides=() conflicts=() replaces=() backup=('etc/update-me.conf' 'etc/update-all.conf') options=() source=( "https://git.eckner.net/Erich/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz" ) sha512sums=('84f050f4cd9697d213539feade5b1905f6616f24c13b54c446d28511c48bde30dd6f8a2281bd78e607f8869924c0f3105e15723add478944c5ed97e610815551') build() { cd ${pkgname}-${pkgver} make } package() { cd ${pkgname}-${pkgver} make DESTDIR=${pkgdir} install }