termux-packages/packages/btfs2/build.sh

37 lines
1.2 KiB
Bash
Raw Normal View History

2022-01-18 04:17:22 +00:00
TERMUX_PKG_HOMEPAGE=https://www.bittorrent.com/btfs/
TERMUX_PKG_DESCRIPTION="Decentralized file system integrating with TRON network and Bittorrent network"
TERMUX_PKG_LICENSE="Apache-2.0, MIT"
TERMUX_PKG_LICENSE_FILE="LICENSE-APACHE, LICENSE-MIT"
TERMUX_PKG_MAINTAINER="Simbad Marino <cctechmx@gmail.com>"
TERMUX_PKG_VERSION=2.1.0
TERMUX_PKG_REVISION=1
2022-01-18 04:17:22 +00:00
TERMUX_PKG_SRCURL=https://github.com/bittorrent/go-btfs/archive/refs/tags/btfs-v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=5960a0dbf57c7867cc76189b66a4867f7da899f222bd32c53d226f3090c600e5
2022-01-18 04:17:22 +00:00
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_AUTO_UPDATE_TAG_REGEXP="\d+\.\d+\.\d+"
TERMUX_PKG_BUILD_IN_SRC=true
2022-02-11 06:49:24 +00:00
termux_step_pre_configure() {
2022-01-18 04:17:22 +00:00
termux_setup_golang
go mod init || :
go mod tidy
# Please do not ever disable CGO:
# https://github.com/termux/termux-packages/issues/9094
local _GOPATH=$(go env GOPATH)
pushd $_GOPATH/pkg/mod/github.com/karalabe/usb@*
local target=hidapi/libusb/hid.c
chmod 0755 $(dirname $target)
chmod 0644 $target
patch -p1 < $TERMUX_PKG_BUILDER_DIR/karalabe-usb-pthread_barrier.patch.diff
popd
2022-02-11 06:49:24 +00:00
}
termux_step_make() {
2022-01-18 04:17:22 +00:00
make build
}
termux_step_make_install() {
2022-02-11 06:49:24 +00:00
install -m700 cmd/btfs/btfs $TERMUX_PREFIX/bin/btfs2
2022-01-18 04:17:22 +00:00
}