5dfa21c9e1
Version 0.5 (recent): - Added support for ansi vt220 character set using utf8 characters, useful for tables - Added support for italic text (thanks to suve) - Added support for crossed out text (thanks to suve) - Added support for 8 bit colours (thanks to John Poole and suve) - Added support for 24 bit colours - Added rudimentary support for highlighting - Fixed behaviour of ESC[7m "negative image" - Fixed charset information in head based on used encoding (thanks to suve) - Fixed ESC[27m "revert off" (thanks to suve) - Escaping html special characters in title (thanks to suve) - Not returning zero at unknown option error (thanks to suve) - Refactored used colour scheme from int to enum (thanks to suve) - Refactored error report using errstr (thanks to suve) - Refactored code to avoid warnings (thanks to suve) - Refactored options to an own struct (thanks to suve) - Refactored color printing switch to an array (thanks to suve) - Refactored application state to an own struct (thanks to suve)
17 lines
486 B
Makefile
17 lines
486 B
Makefile
# $NetBSD: Makefile,v 1.5 2019/11/12 14:04:33 mef Exp $
|
|
|
|
DISTNAME= aha-0.5
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=theZiz/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/theZiz/aha/
|
|
COMMENT= Ansi HTML Adapter
|
|
# It's not specified what version of LGPL
|
|
LICENSE= mpl-1.1 OR gnu-lgpl-v2 OR gnu-lgpl-v2.1 OR gnu-lgpl-v3
|
|
|
|
MAKE_ENV+= MANDIR=${PREFIX}/${PKGMANDIR}
|
|
MAKE_ENV+= MANMODE=${MANMODE}
|
|
MAKE_ENV+= BINMODE=${BINMODE}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|