linux-man-pages: Update from 4.10 to 4.11
[termux-packages] / packages / syncthing / build.sh
1 TERMUX_PKG_HOMEPAGE=https://syncthing.net/
2 TERMUX_PKG_DESCRIPTION="Decentralized file synchronization"
3 TERMUX_PKG_VERSION=0.14.28
4 TERMUX_PKG_SRCURL=https://github.com/syncthing/syncthing/releases/download/v${TERMUX_PKG_VERSION}/syncthing-source-v${TERMUX_PKG_VERSION}.tar.gz
5 TERMUX_PKG_SHA256=dcf4bfcee979a2f5a0b2f971e26c9ba142ab125a1bdfaa68ddc7eb42cd23222d
6 TERMUX_PKG_FOLDERNAME=syncthing
7
8 termux_step_make(){
9 termux_setup_golang
10
11 # The build.sh script doesn't with our compiler
12 # so small adjustments to file locations are needed
13 # so the build.go is fine.
14 mkdir -p go/src/github.com/syncthing/syncthing
15 cp $TERMUX_PKG_SRCDIR/vendor/* ./go/src/ -r
16 cp $TERMUX_PKG_SRCDIR/* go/src/github.com/syncthing/syncthing -r
17
18 # Set gopath so dependencies are built as in go get etc.
19 export GOPATH=$(pwd)/go
20
21 cd go/src/github.com/syncthing/syncthing
22
23 # Unset GOARCH so building build.go is works.
24 export GO_ARCH=$GOARCH
25 unset GOOS GOARCH
26
27 # Now file structure is same as go get etc.
28 go build build.go
29 ./build -goos android \
30 -goarch $GO_ARCH \
31 -no-upgrade \
32 -version v$TERMUX_PKG_VERSION \
33 build
34 }
35
36 termux_step_make_install() {
37 cp go/src/github.com/syncthing/syncthing/syncthing $TERMUX_PREFIX/bin/
38
39 for section in 1 5 7; do
40 local MANDIR=$PREFIX/share/man/man$section
41 mkdir -p $MANDIR
42 cp $TERMUX_PKG_SRCDIR/man/*.$section $MANDIR
43 done
44 }