blob: da3fe73fcff4d3b434d813bc263a3a95d7c8ee51 (
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.6
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=('3eb6b4a7cbba55b07ff9525af65ccc84ca8f111a49777cdfe03bbe8fbe5873c41a2091f4ba34dfc19b3714e90eb5516198c549c6a0cba437abcf801bd4234787')
build() {
cd ${pkgname}-${pkgver}
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}
|