mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
132e6d1bf7
PR: ports/159866 Submitted by: Kaspars Bankovskis <kaspars@bankovskis.lv> Approved by: Zhihao Yuan <lichray@gmail.com> (maintainer)
30 lines
633 B
Makefile
30 lines
633 B
Makefile
# New ports collection makefile for: pure-csv
|
|
# Date created: 2011-03-18
|
|
# Whom: Zhihao Yuan <lichray@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pure-csv
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://pure-lang.googlecode.com/files/
|
|
|
|
MAINTAINER= lichray@gmail.com
|
|
COMMENT= A CSV reading and writing module for the Pure language
|
|
|
|
LIB_DEPENDS+= pure:${PORTSDIR}/lang/pure
|
|
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
PLIST_FILES= lib/pure/csv.pure \
|
|
lib/pure/csv.so
|
|
|
|
USE_GCC= 4.2+
|
|
USE_GMAKE= yes
|
|
|
|
MAKE_ARGS+= prefix=${PREFIX} CPPFLAGS+=-I${LOCALBASE}/include \
|
|
LDFLAGS+=-L${LOCALBASE}/lib CFLAGS="${CFLAGS}"
|
|
|
|
.include <bsd.port.mk>
|