blob: 4b800c416610ffa84c1277ccaf2c62311dd99b0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname=update-all
pkgver=0.7.5
pkgrel=1
pkgdesc="Simple script for installing updated packages"
arch=('any')
url="https://git.eckner.net/Erich/${pkgname}"
license=('GPL')
groups=()
depends=(
'archlinux-contrib'
'pacman-contrib'
'vim'
)
makedepends=()
checkdepends=()
optdepends=(
'check-kernel: check if reboot is necessary after update'
'shutdownasap: allow for less-interuptive reboot'
)
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=('f7558e2dfc0f380eec7705f1640ca48e10dd715f083e30d0b6496a9022a4c9f3d7671f3038c668cbf43366ba71875422bf9a5b381bd08b90aeb4169c4580fb12')
build() {
cd ${pkgname}-${pkgver}
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}
|