blob: 8ac338cddcf6176b96305ec0399cd7a061d9c3e4 (
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
71
72
73
74
|
# Maintainer: Austin Haedicke (austin.haedicke@gmail.com)
# Telegram @savagezen / @savagezen_aur
# GitHub https://github.com/savagezen/pkgbuild
# Previous Maintainer : Sauyon Lee <sauyonl@sauyon.com>
# Contributor : Martin Wimpress <code@flexion.org>
pkgname=syncthing-git
pkgver=v1.2.0.rc.3.r0.gafde0727f
pkgrel=1
pkgdesc="Open Source Continuous Replication / Cluster Synchronization Thing"
url="http://syncthing.net/"
license=('MPLv2')
makedepends=('git' 'go' 'godep' 'inetutils')
conflicts=('syncthing')
provides=('syncthing')
arch=('i686' 'x86_64')
source=("$pkgname-$pkgver::git+https://github.com/syncthing/syncthing.git")
sha256sums=('SKIP')
install=${pkgname}.install
_name=syncthing
prepare() {
cd "${srcdir}"
}
pkgver() {
cd "${pkgname}-${pkgver}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
export GOPATH="${srcdir}/${pkgname}-${pkgver}"
cd "${srcdir}"
mkdir -p "src/github.com/syncthing"
mv "${pkgname}-${pkgver}" "src/github.com/syncthing/${_name}"
cd "src/github.com/syncthing/${_name}"
if [ ${CARCH}" == "i686" ] ; then
go run build.go -no-upgrade -goarch 386 build
if [ ${CARCH}" == "x86_64" ] ; then
go run build.go -no-upgrade -goarch amd64 build
else
go run build.go -no-upgrade build
fi
}
check() {
export GOPATH="${srcdir}"
cd "${srcdir}/src/github.com/syncthing/${_name}"
# go run build.go -no-upgrade test
}
package() {
cd "${srcdir}/src/github.com/syncthing/${_name}"
install -Dm755 ${_name} "${pkgdir}/usr/bin/${_name}"
install -Dm644 README.md "${pkgdir}/usr/share/doc/${_name}/README.md"
install -Dm644 "etc/linux-systemd/system/${_name}@.service" "${pkgdir}/usr/lib/systemd/system/${_name}@.service"
install -Dm644 "etc/linux-systemd/user/${_name}.service" "${pkgdir}/usr/lib/systemd/user/${_name}.service"
# license
install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${_name}/LICENSE
# man pages
cd "${srcdir}/src/github.com/syncthing/${_name}/man"
for file in $(find . -name '*.1' -print); do
install -Dm644 $file "${pkgdir}"/usr/share/man/man1/$file
done
for file in $(find . -name '*.5' -print); do
install -Dm644 $file "${pkgdir}"/usr/share/man/man5/$file
done
for file in $(find . -name '*.7' -print); do
install -Dm644 $file "${pkgdir}"/usr/share/man/man7/$file
done
}
|