new package: pdfcpu

This commit is contained in:
Pooya Moradi 2022-10-03 14:05:51 +03:30 committed by Leonid Pliushch
parent 5d5c61fd78
commit f4ef64fcdc
1 changed files with 20 additions and 0 deletions

20
packages/pdfcpu/build.sh Normal file
View File

@ -0,0 +1,20 @@
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.3.13"
TERMUX_PKG_SRCURL="https://github.com/pdfcpu/pdfcpu/archive/refs/tags/v$TERMUX_PKG_VERSION.tar.gz"
TERMUX_PKG_SHA256=b2877612d5abc59e551c172314fd144c5621e42787b4451dd599f1c14a13afb3
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/"
}