blob: c0ff9e9c3d097c281e68a9d3bff04a4c2aba2b77 (
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
|
# Maintainer: Chipster Julien <julien dot chipster @ archlinux dot fr>
pkgname=gonsupdate
url="https://github.com/Chipsterjulien/gonsupdate"
pkgver=0.0.1
pkgrel=3
pkgdesc="If necessary, update your ip for nsupdate"
arch=('any')
license=('WTFPL')
backup=('etc/gonsupdate/gonsupdate.toml')
makedepends=(go)
options=('!strip')
source=($pkgname-$pkgver.tar.gz)
install=gonsupdate.install
_builddir="$pkgname-$pkgver"
build() {
GOPATH_exist=1
if [ -z $GOPATH ]; then
# path don't exit
GOPATH_exist=0
# create gopath directory
mkdir -p .gopath/{bin,src}
# export var
export GOPATH=~/.gopath
fi
# Getting some lib
go get github.com/op/go-logging
go get github.com/spf13/viper
go get github.com/jordan-wright/email
cd "$_builddir"
go build || return 1
if [ $GOPATH_exist == 0 ]; then
rm -rf ~/.gopath
export GOPATH=
fi
}
package() {
cd "$_builddir"
# gonsupdate.toml
install -Dm644 cfg/"$pkgname"_sample.toml \
"$pkgdir"/etc/$pkgname/gonsupdate_sample.toml || return 1
# Create log directory
install -dm755 "$pkgdir"/var/log/$pkgname || return 1
# Create ip directory
install -dm755 "$pkgdir"/var/lib/$pkgname || return 1
# gonsupdate.[timer|service]
install -Dm644 cfg/"$pkgname".timer \
"$pkgdir"/usr/lib/systemd/system/"$pkgname".timer || return 1
install -Dm644 cfg/"$pkgname".service \
"$pkgdir"/usr/lib/systemd/system/"$pkgname".service || return 1
# gonsupdate binary
install -m750 -o root -g root -D "$srcdir"/$pkgname-$pkgver/$pkgname-$pkgver \
"$pkgdir"/usr/bin/$pkgname || return 1
}
sha512sums=('b1e8cbb569c90e0ade0c5bffee8f55799cf66e48a180bb67f0433d7ce61fc66bd4d17534eae1a35965c56735c048aca647410320c45c6423174d86b88f541f92')
|