ec99145862
- fixed default colour output in BBCode (https://gitlab.com/saalen/highlight/issues/134) - fixed corner case in sh.lang - fixed syntax tests with UTF-8 input (https://gitlab.com/saalen/highlight/issues/123) - added support for Bash in outhtml_codefold.lua plug-in - added ballerina.lang - added block strings to java.lang - added author hints in themes and language definitions - added C++20 reserved words in c.lang - added editorconfig file and validated all files accordingly (thanks to Tristano Ajmone) - CLI: fixed `--list-scripts` with `-d` or HIGHLIGHT_DATADIR env variable (https://gitlab.com/saalen/highlight/issues/139) - GUI W32: replaced multibyte path trace window by startup hint if NtfsDisable8dot3NameCreation is set - GUI: removed AsciiDoc instruction lines from the README popup window
23 lines
546 B
Makefile
23 lines
546 B
Makefile
# $NetBSD: Makefile,v 1.5 2019/12/18 01:34:33 schmonz Exp $
|
|
|
|
.include "../../textproc/libhighlight/Makefile.common"
|
|
|
|
PKGNAME= libhighlight-${VERSION}
|
|
COMMENT+= (shared library)
|
|
|
|
BUILD_TARGET= lib-shared
|
|
|
|
EGDIR= ${PREFIX}/share/examples/highlight
|
|
CONF_FILES= ${EGDIR}/filetypes.conf \
|
|
${PKG_SYSCONFDIR}/filetypes.conf
|
|
|
|
INSTALLATION_DIRS= lib
|
|
|
|
pre-install:
|
|
rm -f ${WRKSRC}/extras/swig/*.orig
|
|
|
|
post-install:
|
|
${LIBTOOL} --mode=install ${INSTALL_LIB} ${WRKSRC}/src/libhighlight.la \
|
|
${DESTDIR}${PREFIX}/lib/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|