0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-09-22 03:59:36 +00:00
Files
termux-packages/packages/pdfcpu/build.sh
Termux Github Actions aee0faa9fd bump(main/pdfcpu): 0.10.2
This commit has been automatically submitted by Github Actions.
2025-04-23 18:40:57 +00:00

21 lines
634 B
Bash

TERMUX_PKG_HOMEPAGE="https://pdfcpu.io"
TERMUX_PKG_DESCRIPTION="A PDF processor written in Go"
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.10.2"
TERMUX_PKG_SRCURL="https://github.com/pdfcpu/pdfcpu/archive/refs/tags/v$TERMUX_PKG_VERSION.tar.gz"
TERMUX_PKG_SHA256=a07cc50446ef6526fa26d5fe2c9e207724971e0b6917f3d70680ec39cfc53aec
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_make() {
termux_setup_golang
cd "${TERMUX_PKG_SRCDIR}/cmd/pdfcpu"
go build
}
termux_step_make_install() {
install -Dm700 "${TERMUX_PKG_SRCDIR}/cmd/pdfcpu/pdfcpu" \
"$TERMUX_PREFIX/bin/"
}