File: csv.asd

package info (click to toggle)
cl-csv 1.12-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 48 kB
  • ctags: 25
  • sloc: lisp: 152; makefile: 43; sh: 28
file content (25 lines) | stat: -rw-r--r-- 736 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name:          csv.asd
;;;; Purpose:       ASDF definition file for CSV
;;;; Programmer:    Kevin M. Rosenberg
;;;; Date Started:  Jan 2003
;;;;
;;;; *************************************************************************

(defpackage #:csv-system (:use #:asdf #:cl))
(in-package #:csv-system)

(defsystem :csv
  :name "cl-csv"
  :author "Frangois-Reni Rideau Dang-Vu Bbn"
  :version "1.8"
  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
  :licence "Bugroff"
  :description "A small text utility to import CSV files"
  :components
  ((:file "csv-src")))