diff options
author | Cem Keylan <cem@ckyln.com> | 2020-01-27 13:05:04 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-01-27 13:05:04 +0300 |
commit | bd4822a46cc152fb6d7dcd9b2c986d81d6de4c9b (patch) | |
tree | b2f54ff9a6574aab02b20469065ab803f7c26664 /community/syncthing/build | |
parent | 39da02f752c35b7be892fdf19aa3993d26436019 (diff) | |
download | repository-bd4822a46cc152fb6d7dcd9b2c986d81d6de4c9b.tar.gz |
syncthing: fix versioning and simplify build.
Diffstat (limited to 'community/syncthing/build')
-rwxr-xr-x | community/syncthing/build | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/community/syncthing/build b/community/syncthing/build index 083ac07b..909d5b3d 100755 --- a/community/syncthing/build +++ b/community/syncthing/build @@ -1,19 +1,9 @@ #!/bin/sh -e -go run build.go build +go run build.go -no-upgrade -version "v1.3.3" build install -Dm755 syncthing "$1/usr/bin/syncthing" -cd man - -for man in *.1; do - install -Dm644 "$man" "$1/usr/share/man/man1/$man" -done - -for man in *.5; do - install -Dm644 "$man" "$1/usr/share/man/man5/$man" -done - -for man in *.7; do - install -Dm644 "$man" "$1/usr/share/man/man7/$man" -done +install -Dm644 man/*.1 -t "$1/usr/share/man/man1" +install -Dm644 man/*.5 -t "$1/usr/share/man/man5" +install -Dm644 man/*.7 -t "$1/usr/share/man/man7" |