Blame lang/cl/gpgme.asd.in

Packit d7e8d0
;;; -*- Mode: lisp -*-
Packit d7e8d0
Packit d7e8d0
;;; Copyright (C) 2006 g10 Code GmbH
Packit d7e8d0
;;;
Packit d7e8d0
;;; This file is part of GPGME.
Packit d7e8d0
;;;
Packit d7e8d0
;;; GPGME is free software; you can redistribute it and/or
Packit d7e8d0
;;; modify it under the terms of the GNU Lesser General Public License
Packit d7e8d0
;;; as published by the Free Software Foundation; either version 2.1 of
Packit d7e8d0
;;; the License, or (at your option) any later version.
Packit d7e8d0
;;;
Packit d7e8d0
;;; GPGME is distributed in the hope that it will be useful, but
Packit d7e8d0
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
Packit d7e8d0
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit d7e8d0
;;; Lesser General Public License for more details.
Packit d7e8d0
;;;
Packit d7e8d0
;;; You should have received a copy of the GNU Lesser General Public
Packit d7e8d0
;;; License along with GPGME; if not, write to the Free
Packit d7e8d0
;;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
Packit d7e8d0
;;; 02111-1307, USA.
Packit d7e8d0
Packit d7e8d0
(defpackage #:gpgme-system
Packit d7e8d0
  (:use #:common-lisp #:asdf))
Packit d7e8d0
Packit d7e8d0
(in-package #:gpgme-system)
Packit d7e8d0
Packit d7e8d0
(defsystem gpgme
Packit d7e8d0
    :description "GnuPG Made Easy."
Packit d7e8d0
    :author "g10 Code GmbH"
Packit d7e8d0
    :version "@VERSION@"
Packit d7e8d0
    :licence "GPL"
Packit d7e8d0
    :depends-on ("cffi" "gpg-error")
Packit d7e8d0
    :components ((:file "gpgme-package")
Packit d7e8d0
		 (:file "gpgme"
Packit d7e8d0
			:depends-on ("gpgme-package"))))