diff options
Diffstat (limited to 'community')
-rwxr-xr-x | community/syncthing/build | 18 | ||||
-rw-r--r-- | community/syncthing/version | 2 |
2 files changed, 5 insertions, 15 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" diff --git a/community/syncthing/version b/community/syncthing/version index bdd8f5bd..382cfc41 100644 --- a/community/syncthing/version +++ b/community/syncthing/version @@ -1 +1 @@ -1.3.3 1 +1.3.3 2 |