1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

This library parses and dumps documents that are formatted according to

RFC 4180, "The common Format and MIME Type for Comma-Separated Values
(CSV) Files". This format is used, among many other things, as a lingua
franca for spreadsheets, and for certain web services.

WWW: http://hackage.haskell.org/package/csv

PR:		ports/159689
Submitted by:	Kaspars Bankovskis <kaspars@bankovskis.lv>
This commit is contained in:
Ashish SHUKLA 2011-09-06 03:13:38 +00:00
parent defd7eee8a
commit 1f79b231d2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=281271
5 changed files with 32 additions and 0 deletions

View File

@ -51,6 +51,7 @@ convertible_port= devel/hs-convertible
cpphs_port= devel/hs-cpphs # executable
criterion_port= benchmarks/hs-criterion
Crypto_port= security/hs-Crypto
csv_port= textproc/hs-csv
curl_port= ftp/hs-curl
darcs_port= devel/hs-darcs # executable
data-default_port= devel/hs-data-default

View File

@ -241,6 +241,7 @@
SUBDIR += hs-bytestring-csv
SUBDIR += hs-case-insensitive
SUBDIR += hs-citeproc-hs
SUBDIR += hs-csv
SUBDIR += hs-double-conversion
SUBDIR += hs-feed
SUBDIR += hs-highlighting-kate

22
textproc/hs-csv/Makefile Normal file
View File

@ -0,0 +1,22 @@
# New ports collection makefile for: hs-csv
# Date created: 11 August 2011
# Whom: Kaspars Bankovskis <kaspars@bankovskis.lv>
#
# $FreeBSD$
#
PORTNAME= csv
PORTVERSION= 0.1.2
CATEGORIES= textproc haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= A CSV library for Haskell
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/COPYING
CABAL_SETUP= Setup.hs
USE_CABAL= parsec
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

2
textproc/hs-csv/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (cabal/csv-0.1.2.tar.gz) = 8cf43442325faa1368f9b55ad952beccf677d9980cdffa3d70a7f204a23ae600
SIZE (cabal/csv-0.1.2.tar.gz) = 2923

View File

@ -0,0 +1,6 @@
This library parses and dumps documents that are formatted according to
RFC 4180, "The common Format and MIME Type for Comma-Separated Values
(CSV) Files". This format is used, among many other things, as a lingua
franca for spreadsheets, and for certain web services.
WWW: http://hackage.haskell.org/package/csv