a8eb6a04c8
libcsv is a small, simple and fast CSV library written in pure ANSI C89 that can read and write CSV data. It provides a straight-forward interface using callback functions to handle parsed fields and rows and can parse improperly formatted CSV files.
17 lines
431 B
Makefile
17 lines
431 B
Makefile
# $NetBSD: Makefile,v 1.1 2016/07/20 23:00:13 cheusov Exp $
|
|
|
|
DISTNAME= libcsv-3.0.3
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libcsv/}
|
|
|
|
MAINTAINER= leot@NetBSD.org
|
|
HOMEPAGE= http://libcsv.sourceforge.net/
|
|
COMMENT= CSV library written in pure ANSI C89
|
|
LICENSE= gnu-gpl-v2 OR gnu-lgpl-v2
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
|
|
CONFIGURE_ARGS+= --includedir=${PREFIX}/include/libcsv
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|