mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
9bab3a8c38
.include <bsd.port.arch.mk>
.if !${PROPERTIES:Mclang}
CFLAGS+= -std=gnu99
.endif
which are no longer needed since "Make gnu99 the default for gcc 3.3.6
and 4.2.1, not gnu89" commit in Oct 2023.
pointed out by tb@
24 lines
467 B
Makefile
24 lines
467 B
Makefile
COMMENT = filter for csv data containing delimiters and newlines
|
|
|
|
GH_ACCOUNT = dbro
|
|
GH_PROJECT = csvquote
|
|
GH_TAGNAME = v0.1.5
|
|
|
|
CATEGORIES = textproc
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB = c
|
|
|
|
MAKE_FLAGS = CFLAGS="${CFLAGS}" CC="${CC}"
|
|
FAKE_FLAGS = BINDIR=${DESTDIR}${PREFIX}/bin
|
|
|
|
# tests are silent if successful
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/csvquote
|
|
${INSTALL_DATA} ${WRKSRC}/README.md ${PREFIX}/share/doc/csvquote
|
|
|
|
.include <bsd.port.mk>
|