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 0ef63b
  :description "GnuPG Made Easy."
Packit Service 0ef63b
  :author "g10 Code GmbH"
Packit Service 0ef63b
  :version "1.13.1"
Packit Service 0ef63b
  :licence "GPL"
Packit Service 0ef63b
  :defsystem-depends-on ("cffi-grovel")
Packit Service 0ef63b
  :depends-on ("cffi" "gpg-error" "trivial-garbage")
Packit Service 0ef63b
  :components ((:file "gpgme-package")
Packit Service 0ef63b
               (:cffi-grovel-file "gpgme-grovel"
Packit Service 0ef63b
                :depends-on ("gpgme-package"))
Packit Service 0ef63b
	       (:file "gpgme"
Packit Service 0ef63b
		:depends-on ("gpgme-package" "gpgme-grovel"))))