25 lines
495 B
Makefile
25 lines
495 B
Makefile
|
COMMENT = extract C reference manpages from SQLite3 header file
|
||
|
|
||
|
DISTNAME = sqlite2mdoc-1.0.0
|
||
|
|
||
|
MAINTAINER = Kristaps Dzonsons <kristaps@bsd.lv>
|
||
|
|
||
|
CATEGORIES = converters databases
|
||
|
HOMEPAGE = https://github.com/kristapsdz/sqlite2mdoc
|
||
|
MASTER_SITES = https://kristaps.bsd.lv/sqlite2mdoc/snapshots/
|
||
|
|
||
|
# ISC
|
||
|
PERMIT_PACKAGE = Yes
|
||
|
|
||
|
# uses pledge()
|
||
|
WANTLIB = c
|
||
|
|
||
|
CONFIGURE_STYLE = simple
|
||
|
CONFIGURE_ARGS = PREFIX="${PREFIX}"
|
||
|
|
||
|
ALL_TARGET = sqlite2mdoc
|
||
|
|
||
|
TEST_TARGET = regress
|
||
|
|
||
|
.include <bsd.port.mk>
|