~ubuntu-branches/ubuntu/vivid/cl-csv/vivid-proposed

« back to all changes in this revision

Viewing changes to csv.asd

  • Committer: Package Import Robot
  • Author(s): Dimitri Fontaine
  • Date: 2014-08-04 19:57:54 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140804195754-vo64b5r1daxwg8ld
Tags: 20140211-1
Quicklisp release update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2
 
;;;; *************************************************************************
3
 
;;;; FILE IDENTIFICATION
4
 
;;;;
5
 
;;;; Name:          csv.asd
6
 
;;;; Purpose:       ASDF definition file for CSV
7
 
;;;; Programmer:    Kevin M. Rosenberg
8
 
;;;; Date Started:  Jan 2003
9
 
;;;;
10
 
;;;; *************************************************************************
11
 
 
12
 
(defpackage #:csv-system (:use #:asdf #:cl))
13
 
(in-package #:csv-system)
14
 
 
15
 
(defsystem :csv
16
 
  :name "cl-csv"
17
 
  :author "Frangois-Reni Rideau Dang-Vu Bbn"
18
 
  :version "1.8"
19
 
  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
20
 
  :licence "Bugroff"
21
 
  :description "A small text utility to import CSV files"
22
 
  :components
23
 
  ((:file "csv-src")))
24
 
 
25