A few fixes.
[iolib.git] / gpg-error.asd
blobcf6cf0f6987353966d1cd0bd74d2e634db6bebe9
1 ;;; -*- Mode: lisp -*-
3 ;;; Copyright (C) 2006 g10 Code GmbH
4 ;;;
5 ;;; This file is part of libgpg-error.
6 ;;;
7 ;;; libgpg-error is free software; you can redistribute it and/or
8 ;;; modify it under the terms of the GNU Lesser General Public License
9 ;;; as published by the Free Software Foundation; either version 2.1 of
10 ;;; the License, or (at your option) any later version.
11 ;;;
12 ;;; libgpg-error is distributed in the hope that it will be useful, but
13 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 ;;; Lesser General Public License for more details.
16 ;;;
17 ;;; You should have received a copy of the GNU Lesser General Public
18 ;;; License along with libgpg-error; if not, write to the Free
19 ;;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 ;;; 02111-1307, USA.
22 (defpackage #:gpg-error-system
23   (:use #:common-lisp #:asdf))
25 (in-package #:gpg-error-system)
27 (defsystem gpg-error
28     :description "Common error values for all GnuPG components."
29     :author "g10 Code GmbH"
30     :version "1.6"
31     :licence "LGPL"
32     :depends-on (:cffi)
33     :pathname (merge-pathnames #p"net.tls/gpg-error/" *load-truename*)
34     :components
35     ((:file "gpg-error-package")
36      (:file "gpg-error-codes":depends-on ("gpg-error-package"))
37      (:file "gpg-error" :depends-on ("gpg-error-codes"))))