fe75da3126
ChangeLog: lowdown 0.4.6: - Make sure stdint is everywhere. lowdown 0.4.5: - Use BSD.lv's mandoc.css. - Use BSD.lv's style and clean up. - Newest sblg. - Add stdint. lowdown 0.4.4: - Use Makefile.configure's macros. - Bring up to speed w/other bsd.lv sites. - Newest oconfigure. - Document list-start for commonmark. - All outputs process start list item for commonmark. - Capture list start iff commonmark. lowdown 0.4.3: - Add atom version feed. - Use new oconfigure. - Bound reading into the value buffer. lowdown 0.4.2: - Document maths. - Remove MATHEXP ("mathexp") facility. - Disable MATHEXP mode. This offers nothing, but ends up complicating the user experience. Stick with only one "math mode" and document it properly. - Have math blocks reported in -Ttree and accumulate the content in a text node. - Begin incorporating better math mode. - Fix pdfhref links in lists. - In nroff mode, stretch table to fit width and embolden header. - Add table documentation. - Typo found by Anton Lindqvist.
24 lines
676 B
Makefile
24 lines
676 B
Makefile
# $NetBSD: Makefile,v 1.6 2019/12/12 20:00:08 fcambus Exp $
|
|
|
|
DISTNAME= lowdown-0.4.6
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= https://kristaps.bsd.lv/lowdown/snapshots/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://kristaps.bsd.lv/lowdown/
|
|
COMMENT= Simple Markdown translator
|
|
LICENSE= 2-clause-bsd
|
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
SUBST_CLASSES+= install
|
|
SUBST_SED.install+= -e 's,/usr/local,${PREFIX},' \
|
|
-e 's,^MANDIR=.*,MANDIR=${PREFIX}/${PKGMANDIR},' \
|
|
-e '/^CC=.*/d' \
|
|
-e '/^CFLAGS=.*/d' \
|
|
-e '/^LDFLAGS=.*/d'
|
|
SUBST_FILES.install+= configure
|
|
SUBST_STAGE.install= pre-configure
|
|
SUBST_MESSAGE.install= Fixing installation path.
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|