Skip to content

syncthing: update to 1.6.1 #1829

Merged
merged 1 commit into from
Jun 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
#}