Files
termux-packages/packages/seanime/build.sh
termux-pacman-bot 5a85abb502 bump(main/seanime): 2.9.3
This commit has been automatically submitted by Github Actions.
2025-07-22 00:51:15 +00:00

35 lines
1.0 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/5rahim/seanime
TERMUX_PKG_DESCRIPTION="Self-hosted anime and manga server for sea rovers."
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="2.9.3"
TERMUX_PKG_SRCURL=https://github.com/5rahim/seanime/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=3d20d1a8c5b3c5ce2d7fe77e2d2b3417a37d9fb752244cace5a299654ce459b1
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_HOSTBUILD=true
termux_step_host_build() {
termux_setup_nodejs
cp -r $TERMUX_PKG_SRCDIR/seanime-web ./seanime-web
cd seanime-web
npm install
npm run build
}
termux_step_pre_configure() {
cp -r $TERMUX_PKG_HOSTBUILD_DIR/seanime-web/out $TERMUX_PKG_SRCDIR/web/
termux_setup_golang
}
termux_step_make() {
# -checklinkname=0 for https://github.com/wlynxg/anet?tab=readme-ov-file#how-to-build-with-go-1230-or-later
go build -o seanime -trimpath -ldflags="-checklinkname=0 -s -w"
}
termux_step_make_install() {
install -Dm700 -t "${TERMUX_PREFIX}"/bin "$TERMUX_PKG_SRCDIR"/seanime
}