Sqliteconvert is a set of tools to convert SQLite3 schema files into documentation. It includes sqlite2dot(1), which converts into a graphviz file; sqlite2html(1), which converts into an HTML5 fragment; and sqliteconvert(1), which pulls these tools together with some sane default templates. WWW: https://kristaps.bsd.lv/sqliteconvert/ Approved by: lme (mentor) Differential Revision: https://reviews.freebsd.org/D9895
23 lines
460 B
Makefile
23 lines
460 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= sqliteconvert
|
|
DISTVERSIONPREFIX= VERSION_
|
|
DISTVERSION= 0_1_2
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= tobik@FreeBSD.org
|
|
COMMENT= Tools to convert SQLite3 schema files into documentation
|
|
|
|
LICENSE= ISCL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.md
|
|
|
|
RUN_DEPENDS= dot:graphics/graphviz
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= kristapsdz
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sqlite2html \
|
|
${STAGEDIR}${PREFIX}/bin/sqlite2dot
|
|
|
|
.include <bsd.port.mk>
|