diff --git a/syncthing.be0 b/syncthing.be0 index 704d8662d..7f28d227d 100755 --- a/syncthing.be0 +++ b/syncthing.be0 @@ -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" @@ -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}" @@ -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 @@ -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 -#} -