gnu-dist.scm 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ;;; GNU Guix --- Functional package management for GNU
  2. ;;; Copyright © 2013, 2015, 2020 Ludovic Courtès <ludo@gnu.org>
  3. ;;; Copyright © 2018 Mark H Weaver <mhw@netris.org>
  4. ;;;
  5. ;;; This file is part of GNU Guix.
  6. ;;;
  7. ;;; GNU Guix is free software; you can redistribute it and/or modify it
  8. ;;; under the terms of the GNU General Public License as published by
  9. ;;; the Free Software Foundation; either version 3 of the License, or (at
  10. ;;; your option) any later version.
  11. ;;;
  12. ;;; GNU Guix is distributed in the hope that it will be useful, but
  13. ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. ;;; GNU General Public License for more details.
  16. ;;;
  17. ;;; You should have received a copy of the GNU General Public License
  18. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
  19. (define-module (guix build gnu-dist)
  20. #:use-module (guix build utils)
  21. #:use-module (guix build gnu-build-system)
  22. #:use-module (srfi srfi-1)
  23. #:export (%dist-phases))
  24. ;;; Commentary:
  25. ;;;
  26. ;;; Build phases to build a source tarball with the GNU build system, as with
  27. ;;; "make distcheck".
  28. ;;;
  29. ;;; Code:
  30. (define* (build #:key build-before-dist? make-flags (dist-target "distcheck")
  31. #:allow-other-keys
  32. #:rest args)
  33. (when build-before-dist?
  34. (let ((build (assq-ref %standard-phases 'build)))
  35. (apply build args)))
  36. (format #t "building target `~a'~%" dist-target)
  37. (apply invoke "make" dist-target make-flags))
  38. (define* (install-dist #:key outputs #:allow-other-keys)
  39. (let ((out (assoc-ref outputs "out")))
  40. (for-each (lambda (tarball)
  41. (install-file tarball out))
  42. (find-files "." "\\.tar\\."))
  43. #t))
  44. (define %dist-phases
  45. ;; Phases for building a source tarball.
  46. (modify-phases %standard-phases
  47. (delete 'strip)
  48. (replace 'install install-dist)
  49. (add-after 'build 'build-dist build)
  50. (delete 'build)))
  51. ;;; gnu-dist.scm ends here