UTF-8, untabify, whitespaces.
[binary-types.git] / binary-types.asd
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;;------------------------------------------------------------------
3 ;;;; 
4 ;;;;    Copyright (C) 2008, Frode V. Fjeld
5 ;;;; 
6 ;;;;    For distribution policy, see the accompanying file COPYING.
7 ;;;; 
8 ;;;; Filename:      movitz.asd
9 ;;;; Description:   Movitz ASDF system definition.
10 ;;;; Author:        Frode Vatvedt Fjeld <ffjeld@common-lisp.net>
11 ;;;; Created at:    Thu Jan 15 18:40:58 2004
12 ;;;;                
13 ;;;; $Id: binary-types.asd,v 1.2 2008/02/25 23:43:24 ffjeld Exp $
14 ;;;;                
15 ;;;;------------------------------------------------------------------
16
17 (defpackage binary-types-asd
18   (:use :cl :asdf))
19
20 (in-package binary-types-asd)
21
22 (defsystem binary-types
23   :name "Binary-types"
24   :maintainer "ffjeld@common-lisp.net"
25   :author "Frode V. Fjeld"
26   :license "BSD-like, see accopanying file COPYING."
27   :description "A library for reading and writing binary records."
28   :perform (load-op :after (op c)
29                     (provide 'binary-types))
30   :components ((:file "binary-types")))