File: binary-types.asd

package info (click to toggle)
cl-binary-types 0.90b-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 140 kB
  • ctags: 105
  • sloc: lisp: 1,085; makefile: 44; sh: 28
file content (31 lines) | stat: -rw-r--r-- 1,157 bytes parent folder | download | duplicates (2)
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
26
27
28
29
30
31
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name:          binary-types.asd
;;;; Purpose:       ASDF definition file for Binary-Types
;;;; Programmer:    Kevin M. Rosenberg
;;;; Date Started:  Sep 2002
;;;;
;;;; $Id: binary-types.asd 7061 2003-09-07 06:34:45Z kevin $
;;;;
;;;; *************************************************************************

(in-package :asdf)

(defsystem :binary-types
  :name "cl-binary-types"
  :author "Frode Vatvedt Fjeld <frodef@acm.org>"
  :version "0.84"
  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
  :licence "GNU Lesser General Public License"
  :description "Library for reading and writing binary files"
  :long-description "Binary-types is a Common Lisp package for reading and writing binary files. Binary-types provides macros that are used to declare the mapping between lisp objects and some binary (i.e. octet-based) representation."
  
  :perform (load-op :after (op binary-types)
	    (pushnew :binary-types cl:*features*))
  
  :components
  ((:file "binary-types")))