Blame lang/cl/gpgme.asd

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