package-config.scm.in 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. ;;; guile-gcrypt --- crypto tooling for guile
  2. ;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
  3. ;;;
  4. ;;; This file is part of guile-gcrypt.
  5. ;;;
  6. ;;; guile-gcrypt is free software; you can redistribute it and/or modify it
  7. ;;; under the terms of the GNU General Public License as published by
  8. ;;; the Free Software Foundation; either version 3 of the License, or
  9. ;;; (at your option) any later version.
  10. ;;;
  11. ;;; guile-gcrypt is distributed in the hope that it will be useful, but
  12. ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. ;;; General Public License for more details.
  15. ;;;
  16. ;;; You should have received a copy of the GNU General Public License
  17. ;;; along with guile-gcrypt. If not, see <http://www.gnu.org/licenses/>.
  18. (define-module (gcrypt package-config)
  19. #:export (%libgcrypt
  20. %guile-gcrypt-package-name %guile-gcrypt-version))
  21. (define %libgcrypt
  22. "@LIBGCRYPT@")
  23. (define %guile-gcrypt-package-name
  24. "@PACKAGE_NAME@")
  25. (define %guile-gcrypt-version
  26. "@PACKAGE_VERSION@")