37375312b9
In issue https://github.com/termux/termux-packages/issues/6160 I have found that community repo "its-pointless.github.io" specifies us as maintainer for its packages. This is NOT TRUE and potentially misleads people using these packages. Now TERMUX_PKG_MAINTAINER will contain a default value which is neutral and not specify maintainer. So all packages now have to override it to the correct value. [skip ci] %ci:no-build
50 lines
1.5 KiB
Bash
50 lines
1.5 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://syncthing.net/
|
|
TERMUX_PKG_DESCRIPTION="Decentralized file synchronization"
|
|
TERMUX_PKG_LICENSE="MPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
# NOTE: as of 1.12.0 compilation fails when package zstd is
|
|
# present in TERMUX_PREFIX.
|
|
TERMUX_PKG_VERSION=1.12.0
|
|
TERMUX_PKG_SRCURL=https://github.com/syncthing/syncthing/releases/download/v${TERMUX_PKG_VERSION}/syncthing-source-v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=fb0b57581c59b050a6ad2fbde8058114dc380d7f27635eff91e8e1a86a3f1a29
|
|
|
|
termux_step_make(){
|
|
termux_setup_golang
|
|
|
|
# The build.sh script doesn't with our compiler
|
|
# so small adjustments to file locations are needed
|
|
# so the build.go is fine.
|
|
mkdir -p go/src/github.com/syncthing/syncthing
|
|
cp $TERMUX_PKG_SRCDIR/vendor/* ./go/src/ -r
|
|
cp $TERMUX_PKG_SRCDIR/* go/src/github.com/syncthing/syncthing -r
|
|
|
|
# Set gopath so dependencies are built as in go get etc.
|
|
export GOPATH=$(pwd)/go
|
|
|
|
cd go/src/github.com/syncthing/syncthing
|
|
|
|
# Unset GOARCH so building build.go works.
|
|
export GO_ARCH=$GOARCH
|
|
export _CC=$CC
|
|
unset GOOS GOARCH CC
|
|
|
|
# Now file structure is same as go get etc.
|
|
go build build.go
|
|
export CC=$_CC
|
|
./build -goos android \
|
|
-goarch $GO_ARCH \
|
|
-no-upgrade \
|
|
-version v$TERMUX_PKG_VERSION \
|
|
build
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
cp go/src/github.com/syncthing/syncthing/syncthing $TERMUX_PREFIX/bin/
|
|
|
|
for section in 1 5 7; do
|
|
local MANDIR=$PREFIX/share/man/man$section
|
|
mkdir -p $MANDIR
|
|
cp $TERMUX_PKG_SRCDIR/man/*.$section $MANDIR
|
|
done
|
|
}
|