Skip to content

Commit

Permalink
Merge pull request #1829 from mariux64/update-syncthing-161
Browse files Browse the repository at this point in the history
syncthing: update to 1.6.1
  • Loading branch information
wwwutz authored Jun 10, 2020
2 parents 72bda35 + 35a0c8b commit 38d6aa7
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions syncthing.be0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/env beesh

# BEE_VERSION syncthing-1.5.0-0
# BEE_VERSION syncthing-1.6.1-0

## The source URL(s) array
SRCURL[0]="https://github.com/syncthing/syncthing/releases/download/v${PKGVERSION}/syncthing-source-v${PKGVERSION}.tar.gz syncthing-v${PKGVERSION}.tar.gz"
Expand Down Expand Up @@ -28,8 +28,9 @@ build_in_sourcedir

mee_build() {
export GOPATH=${F}
go run build.go
# go run build.go -no-upgrade
# go clean -r -x build.go # NEVER EVER run this as root
go run -v build.go
go run -v build.go -no-upgrade build syncthing
}

## mee_install() should install into "${D}"
Expand All @@ -38,7 +39,8 @@ mee_build() {
mee_install() {

mkdir -p ${D}/usr/bin
for b in syncthing stcli stevents stcompdirs stvanity stfindignored stfileinfo stwatchfile stsigtool; do
cp ${S}/syncthing ${D}/usr/bin
for b in stcli stevents stcompdirs stvanity stfindignored stfileinfo stwatchfile stsigtool; do
cp ${S}/bin/$b ${D}/usr/bin
done

Expand All @@ -51,8 +53,3 @@ mee_install() {
mkdir -p ${D}/usr/share/man/man7
cp ${S}/man/syncthing-*.7 ${D}/usr/share/man/man7
}

#mee_install_post() {
# exit
#}

0 comments on commit 38d6aa7

Please sign in to comment.