blob: 81953acefbb748a044f2760b12517f7aec08753a (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Maintainer (AUR): Stefan Majewsky <majewsky@gmx.net>
# Maintainer: Luke Shumaker <lukeshu@parabola.nu>
# Upstream info
_pkgname='holo'
_pkgver=2.2
_pkgdesc='Minimalistic configuration management'
url='http://holocm.org'
license=('GPL3')
# patch info
pkgname=$_pkgname-lukeshu
pkgver=$_pkgver.lukeshu1
pkgdesc="$_pkgdesc (with patches from lukeshu)"
_gitver='commit=ec2b9a5a3d2d3384a84ed45dbc38eb689003e835'
mksource=("$_pkgname-$pkgver::git+https://github.com/lukeshu/holo#$_gitver")
mkmd5sums=('SKIP')
provides=("$_pkgname=$pkgver")
conflicts=("$_pkgname")
# package info
pkgrel=2.1
arch=('i686' 'x86_64' 'armv7h')
depends=()
optdepends=(
'git: to display diffs of entities'
'openssh: for the holo-ssh-keys plugin'
'shadow: for the holo-users-groups plugin'
)
makedepends=('go' 'perl')
checkdepends=('git' 'openssh')
provides=(
"holo=${pkgver}"
# required for holo-build packages that have a holo-$PLUGIN dependency when there are files below /usr/share/holo/$PLUGIN/
"holo-files=${pkgver}"
"holo-run-scripts=${pkgver}"
"holo-ssh-keys=${pkgver}"
"holo-users-groups=${pkgver}"
)
conflicts=(
'holo-run-scripts'
'holo-ssh-keys'
'holo-users-groups'
)
backup=(
'etc/holorc'
'etc/holorc.d/10-files'
'etc/holorc.d/20-users-groups'
'etc/holorc.d/25-ssh-keys'
'etc/holorc.d/95-holo-run-scripts'
)
source=("https://repo.parabola.nu/other/~lukeshu/holo/$_pkgname-$pkgver.tar.gz")
sha256sums=('ad64d5af1b08a6ec0053fe9a729052152d3f77c8488f791cc99cee5c12faf72d')
options=('!strip') # binaries are already stripped inside the Makefile
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
make
}
check() {
cd "${srcdir}/${_pkgname}-${pkgver}"
make check
}
package() {
cd "${srcdir}/${_pkgname}-${pkgver}"
make install DESTDIR="${pkgdir}"
}
|