-
Notifications
You must be signed in to change notification settings - Fork 2
/
cl-base64.asd
33 lines (29 loc) · 1.05 KB
/
cl-base64.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
31
32
33
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name: cl-base64.asd
;;;; Purpose: ASDF definition file for Cl-Base64
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Dec 2002
;;;;
;;;; $Id$
;;;; *************************************************************************
(in-package #:cl-user)
(defpackage #:cl-base64-system (:use #:asdf #:cl))
(in-package #:cl-base64-system)
(defsystem cl-base64
:name "cl-base64"
:author "Kevin M. Rosenberg based on initial code by Juri Pakaste"
:version "3.1"
:maintainer "Kevin M. Rosenberg <[email protected]>"
:licence "BSD-style"
:description "Base64 encoding and decoding with URI support."
:components
((:file "package")
(:file "encode" :depends-on ("package"))
(:file "decode" :depends-on ("package"))
))
(defmethod perform ((o test-op) (c (eql (find-system 'cl-base64))))
(operate 'load-op 'cl-base64-tests)
(operate 'test-op 'cl-base64-tests :force t))