config.scm.in 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ;;; config.scm --- Configuration module for Guile-Daemon
  2. ;; Copyright © 2016 Alex Kost <alezost@gmail.com>
  3. ;; This file is part of Guile-Daemon.
  4. ;; Guile-Daemon is free software; you can redistribute it and/or modify
  5. ;; it under the terms of the GNU General Public License as published by
  6. ;; the Free Software Foundation, either version 3 of the License, or
  7. ;; (at your option) any later version.
  8. ;;
  9. ;; Guile-Daemon is distributed in the hope that it will be useful,
  10. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. ;; GNU General Public License for more details.
  13. ;;
  14. ;; You should have received a copy of the GNU General Public License
  15. ;; along with Guile-Daemon. If not, see <http://www.gnu.org/licenses/>.
  16. ;;; Commentary:
  17. ;; This module provides compile-time configuration variables for
  18. ;; guile-daemon.
  19. ;;; Code:
  20. (define-module (daemon config)
  21. #:export (%version
  22. %package-name
  23. %package-url
  24. %copyright-year
  25. %bug-address))
  26. (define %version
  27. "@PACKAGE_VERSION@")
  28. (define %package-name
  29. "@PACKAGE_NAME@")
  30. (define %copyright-year
  31. "@COPYRIGHT_YEAR@")
  32. ;;; config.scm ends here