You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
# TODO (probably never): Separate all libraries in different packages.
|
|
|
|
name=syncthing
|
|
version=0.14.28
|
|
update_url="https://github.com/$name/$name/releases"
|
|
|
|
dlextract "https://github.com/$name/$name/releases/download/v$version/$name-source-v$version.tar.gz" \
|
|
'c1305fb21e0f987d9cb9f80e0ea41ebe'
|
|
extrafile 'syncthing-browser.desktop'
|
|
header_end
|
|
|
|
# Set up a GOPATH for all the included libraries
|
|
mkdir -p "src/github.com/$name/"
|
|
mv -T "$name" "src/github.com/$name/$name"
|
|
export GOPATH="$PWD"
|
|
|
|
cd "src/github.com/$name/$name"
|
|
|
|
# Do shared linking against the go libraries
|
|
sed -i -e 's/"install", "-v", "-ldflags"/"install", "-linkshared", "-v", "-ldflags"/' build.go
|
|
|
|
go run build.go -no-upgrade
|
|
|
|
# Install program
|
|
install -Dm755 -t "$dir_install/$dir_prefix/$dir_bindir" bin/syncthing
|
|
|
|
# Install manpages
|
|
for file in man/syncthing.1 man/*.5 man/*.7; do
|
|
num="$(echo "$file" | cut -d '.' -f 2)"
|
|
install -Dm644 -t "$dir_install/$dir_prefix/$dir_mandir/man$num" "$file"
|
|
done
|
|
|
|
# Install desktop
|
|
install -Dm644 -t "$dir_install/$dir_prefix/$dir_datadir/applications" ../../../../syncthing-browser.desktop
|
|
|
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab:
|
|
|