termux-packages/packages/ipfs/build.sh

40 lines
1.4 KiB
Bash
Raw Normal View History

TERMUX_PKG_HOMEPAGE=https://ipfs.io/
2018-06-28 16:44:31 +02:00
TERMUX_PKG_DESCRIPTION="A peer-to-peer hypermedia distribution protocol"
2019-01-21 13:53:58 +01:00
TERMUX_PKG_LICENSE="MIT"
2022-01-31 19:18:51 +01:00
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=0.11.0
2020-01-30 19:48:26 +01:00
TERMUX_PKG_SRCURL=https://github.com/ipfs/go-ipfs/releases/download/v${TERMUX_PKG_VERSION}/go-ipfs-source.tar.gz
TERMUX_PKG_SHA256=9533c69c5a8383231699208f98b1e0b863672503168bd2cface65f0e0792f58e
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_SUGGESTS="termux-services"
TERMUX_PKG_SERVICE_SCRIPT=("ipfs" "[ ! -d \"${TERMUX_ANDROID_HOME}/.ipfs\" ] && ipfs init --empty-repo 2>&1 && ipfs config --json Swarm.EnableRelayHop false 2>&1 && ipfs config --json Swarm.EnableAutoRelay true 2>&1; exec ipfs daemon --enable-namesys-pubsub 2>&1")
2018-06-28 16:44:31 +02:00
termux_step_make() {
termux_setup_golang
2018-06-28 16:44:31 +02:00
export GOPATH=${TERMUX_PKG_BUILDDIR}
export GOARCH=${TERMUX_ARCH}
2018-06-28 16:44:31 +02:00
if [ "${TERMUX_ARCH}" = "aarch64" ]; then
GOARCH="arm64"
elif [ "${TERMUX_ARCH}" = "i686" ]; then
GOARCH="386"
elif [ "${TERMUX_ARCH}" = "x86_64" ]; then
GOARCH="amd64"
fi
2018-06-28 16:44:31 +02:00
mkdir -p "${GOPATH}/src/github.com/ipfs"
cp -a "${TERMUX_PKG_SRCDIR}" "${GOPATH}/src/github.com/ipfs/go-ipfs"
cd "${GOPATH}/src/github.com/ipfs/go-ipfs"
make build
2019-04-17 23:57:24 +02:00
# Fix folders without write permissions preventing which fails repeating builds:
cd $TERMUX_PKG_BUILDDIR
find . -type d -exec chmod u+w {} \;
2018-06-28 16:44:31 +02:00
}
termux_step_make_install() {
install -Dm700 -t "$TERMUX_PREFIX"/bin "${TERMUX_PKG_BUILDDIR}/src/github.com/ipfs/go-ipfs/cmd/ipfs/ipfs"
2018-06-28 16:44:31 +02:00
}