27 lines
556 B
Makefile
27 lines
556 B
Makefile
# $OpenBSD: Makefile,v 1.5 2021/06/28 15:46:34 sthen Exp $
|
|
|
|
COMMENT = extract C reference manpages from SQLite3 header file
|
|
|
|
DISTNAME = sqlite2mdoc-0.1.10
|
|
|
|
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>
|