termux-packages/packages/tidy/build.sh
Leonid Pliushch 0d1920a061 move some packages from unstable repository
New packages that will be added:

 * antiword
 * beanshell
 * cabextract
 * deutex
 * direnv
 * exiv2
 * git-lfs
 * gitea
 * hoedown
 * httrack
 * iverilog
 * links
 * loksh
 * mksh
 * mktorrent
 * pdfgrep
 * shellharden
 * swig
 * tidy
 * tweego
 * wordgrinder
2019-05-11 18:36:47 +03:00

24 lines
801 B
Bash

TERMUX_PKG_HOMEPAGE=http://www.html-tidy.org/
TERMUX_PKG_DESCRIPTION="A tool to tidy down your HTML code to a clean style"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="Leonid Plyushch <leonid.plyushch@gmail.com> @xeffyr"
TERMUX_PKG_VERSION=5.7.16
TERMUX_PKG_REVISION=2
_COMMIT=5f7e367cb54563dabda4bf4e3c11c6ecc68a0fa3
TERMUX_PKG_SRCURL=https://github.com/htacg/tidy-html5/archive/${_COMMIT}.tar.gz
TERMUX_PKG_SHA256=7ff3ef0a774f44e780df9b94e48c2ea070a6cfc791b5bd907359fd718a7f1004
TERMUX_PKG_DEPENDS="libxslt"
TERMUX_PKG_HOSTBUILD=true
termux_step_host_build() {
## Host build required to generate man pages.
termux_setup_cmake
cmake "$TERMUX_PKG_SRCDIR" && make
}
termux_step_post_make_install() {
install -Dm600 \
"$TERMUX_PKG_HOSTBUILD_DIR"/tidy.1 \
"$TERMUX_PREFIX"/share/man/man1/
}