mid-kid
7 years ago
1 changed files with 11 additions and 14 deletions
@ -1,34 +1,31 @@ |
|||||
name=syncthing |
name=syncthing |
||||
version=0.14.32 |
version=0.14.37 |
||||
update_url="https://github.com/$name/$name/releases" |
update_url="https://github.com/$name/$name/releases" |
||||
|
|
||||
dlextract "https://github.com/$name/$name/releases/download/v$version/$name-source-v$version.tar.gz" \ |
dlextract "https://github.com/$name/$name/releases/download/v$version/$name-source-v$version.tar.gz" \ |
||||
'3f5a4a413624572d9191e7032f480f3b' |
'7c73632aa1d9c5a1c1824ace7516be86' |
||||
extrafile 'syncthing-browser.desktop' |
extrafile 'syncthing-browser.desktop' |
||||
_ |
_ |
||||
|
|
||||
# Set up a GOPATH for all the included libraries |
# Set up a fake GOPATH |
||||
mkdir -p "src/github.com/$name/" |
mkdir -p ".gopath/src/github.com/$name/" |
||||
mv -T "$name" "src/github.com/$name/$name" |
ln -rs "$name" ".gopath/src/github.com/$name/$name" |
||||
export GOPATH="$PWD" |
export GOPATH="$PWD/.gopath" |
||||
|
|
||||
cd "src/github.com/$name/$name" |
cd "$name" |
||||
|
|
||||
# Do shared linking against the go libraries |
go run build.go -no-upgrade build |
||||
sed -i -e 's/"install", "-v", "-ldflags"/"install", "-linkshared", "-v", "-ldflags"/' build.go |
|
||||
|
|
||||
go run build.go -no-upgrade |
|
||||
|
|
||||
# Install program |
# Install program |
||||
install -Dm755 -t "$dir_install/$dir_prefix/$dir_bin" bin/syncthing |
install -Dm755 -t "$dir_install/$dir_prefix/$dir_bin" syncthing |
||||
|
|
||||
# Install manpages |
# Install manpages |
||||
for file in man/syncthing.1 man/*.5 man/*.7; do |
for file in man/syncthing.1 man/*.5 man/*.7; do |
||||
num="$(echo "$file" | cut -d '.' -f 2)" |
num="$(echo "$file" | cut -d . -f 2)" |
||||
install -Dm644 -t "$dir_install/$dir_prefix/$dir_man/man$num" "$file" |
install -Dm644 -t "$dir_install/$dir_prefix/$dir_man/man$num" "$file" |
||||
done |
done |
||||
|
|
||||
# Install desktop |
# Install desktop |
||||
install -Dm644 -t "$dir_install/$dir_prefix/$dir_data/applications" ../../../../syncthing-browser.desktop |
install -Dm644 -t "$dir_install/$dir_prefix/$dir_data/applications" ../syncthing-browser.desktop |
||||
|
|
||||
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: |
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: |
||||
|
Loading…
Reference in new issue