forked from frodef/binary-types
-
Notifications
You must be signed in to change notification settings - Fork 2
/
binary-types.asd
30 lines (27 loc) · 1.03 KB
/
binary-types.asd
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
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;;------------------------------------------------------------------
;;;;
;;;; Copyright (C) 2008, Frode V. Fjeld
;;;;
;;;; For distribution policy, see the accompanying file COPYING.
;;;;
;;;; Filename: movitz.asd
;;;; Description: Movitz ASDF system definition.
;;;; Author: Frode Vatvedt Fjeld <ffjeld@common-lisp.net>
;;;; Created at: Thu Jan 15 18:40:58 2004
;;;;
;;;; $Id: binary-types.asd,v 1.2 2008/02/25 23:43:24 ffjeld Exp $
;;;;
;;;;------------------------------------------------------------------
(defpackage binary-types-asd
(:use :cl :asdf))
(in-package binary-types-asd)
(defsystem binary-types
:name "Binary-types"
:maintainer "ffjeld@common-lisp.net"
:author "Frode V. Fjeld"
:license "BSD-like, see accopanying file COPYING."
:description "A library for reading and writing binary records."
:perform (load-op :after (op c)
(provide 'binary-types))
:components ((:file "binary-types")))