LaTeX is able to produce really nice document layouts. But it is also able to produce a lot of noise on the command line. pplatex is a command-line tool that parses the logs of latex and pdflatex and prints warnings and errors in an human readable format. Help from and OK jca@
31 lines
592 B
Makefile
31 lines
592 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2017/12/07 15:55:12 pirofti Exp $
|
|
|
|
COMMENT = pretty print LaTeX messages
|
|
|
|
GH_ACCOUNT = stefanhepp
|
|
GH_PROJECT = pplatex
|
|
GH_COMMIT = 5cec891ad6aec0115081cdd114ae1cc4f1ed7c06
|
|
|
|
DISTNAME = pplatex
|
|
PKGNAME = pplatex-1.0-rc2
|
|
|
|
CATEGORIES = textproc
|
|
|
|
HOMEPAGE = https://github.com/stefanhepp/pplatex
|
|
|
|
MAINTAINER = Paul Irofti <pirofti@openbsd.org>
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = devel/cmake
|
|
|
|
WANTLIB += ${COMPILER_LIBCXX} c m pcre pcreposix
|
|
|
|
LIB_DEPENDS = devel/pcre
|
|
|
|
do-install:
|
|
${INSTALL} ${WRKBUILD}/src/pplatex ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|