mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-23 09:52:40 +00:00
39 lines
1.3 KiB
Bash
39 lines
1.3 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://www.getdnote.com/
|
|
TERMUX_PKG_DESCRIPTION="This package contains the Dnote server. It comprises of the web interface, the web API, and the background jobs."
|
|
TERMUX_PKG_LICENSE="Apache-2.0"
|
|
TERMUX_PKG_MAINTAINER="Ravener <ravener.anime@gmail.com>"
|
|
TERMUX_PKG_VERSION="3.0.0"
|
|
TERMUX_PKG_SRCURL="https://github.com/dnote/dnote/archive/refs/tags/server-v${TERMUX_PKG_VERSION}.tar.gz"
|
|
TERMUX_PKG_SHA256=5a6beef7e8902386443407e020e2c4b54dec9e5e285224646c39020deebb5880
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_UPDATE_VERSION_REGEXP="server-v\d+\.\d+\.\d+(?!-)"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_SUGGESTS="postgresql"
|
|
|
|
termux_step_pre_configure() {
|
|
termux_setup_nodejs
|
|
termux_setup_golang
|
|
|
|
go mod download
|
|
|
|
# build assets for dnote-server:
|
|
cd "$TERMUX_PKG_SRCDIR/pkg/server/assets"
|
|
npm i
|
|
./js/build.sh
|
|
./styles/build.sh
|
|
}
|
|
|
|
termux_step_make() {
|
|
cd "$TERMUX_PKG_SRCDIR"
|
|
|
|
# build binary
|
|
moduleName="github.com/dnote/dnote"
|
|
ldflags="-X '$moduleName/pkg/server/buildinfo.CSSFiles=main.css' -X '$moduleName/pkg/server/buildinfo.JSFiles=main.js' -X '$moduleName/pkg/server/buildinfo.Version=$TERMUX_PKG_VERSION' -X '$moduleName/pkg/server/buildinfo.Standalone=true'"
|
|
|
|
go build -o dnote-server -ldflags "$ldflags" pkg/server/main.go
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm700 $TERMUX_PKG_SRCDIR/dnote-server $TERMUX_PREFIX/bin/dnote-server
|
|
}
|