2013-01-05 18:47:50 -05:00
|
|
|
# GNU Guix --- Functional package management for GNU
|
|
|
|
# Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
|
2013-01-17 16:09:15 -05:00
|
|
|
# Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
2012-06-13 12:01:25 -04:00
|
|
|
#
|
2013-01-05 18:47:50 -05:00
|
|
|
# This file is part of GNU Guix.
|
2012-06-13 12:01:25 -04:00
|
|
|
#
|
2013-01-05 18:47:50 -05:00
|
|
|
# GNU Guix is free software; you can redistribute it and/or modify it
|
2012-06-13 12:01:25 -04:00
|
|
|
# under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
# your option) any later version.
|
|
|
|
#
|
2013-01-05 18:47:50 -05:00
|
|
|
# GNU Guix is distributed in the hope that it will be useful, but
|
2012-06-13 12:01:25 -04:00
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2013-01-05 18:47:50 -05:00
|
|
|
# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-06-13 12:01:25 -04:00
|
|
|
|
2012-10-24 17:10:09 -04:00
|
|
|
bin_SCRIPTS = \
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
scripts/guix
|
2012-06-30 18:56:24 -04:00
|
|
|
|
2013-02-11 19:23:20 -05:00
|
|
|
nodist_noinst_SCRIPTS = \
|
|
|
|
pre-inst-env \
|
|
|
|
test-env
|
|
|
|
|
build: Split Makefile.am into two parts.
* Makefile.am (MODULES): Move gnu/* to gnu-system.am.
(patchdir, dist_patch_DATA, bootstrapdir,
bootstrap_x86_64_linuxdir, bootstrap_i686_linuxdir,
dist_bootstrap_x86_64_linux_DATA, dist_bootstrap_i686_linux_DATA,
nodist_bootstrap_x86_64_linux_DATA, nodist_bootstrap_i686_linux_DATA,
install-data-hook, DISTCLEANFILES, DOWNLOAD_FILE,
gnu/packages/bootstrap/x86_64-linux/guile-2.0.7.tar.xz,
gnu/packages/bootstrap/i686-linux/guile-2.0.7.tar.xz): Move to...
* gnu-system.am: ... here. New file.
2013-06-19 17:19:03 -04:00
|
|
|
include gnu-system.am
|
|
|
|
|
2012-06-13 12:01:25 -04:00
|
|
|
MODULES = \
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
guix/scripts/build.scm \
|
|
|
|
guix/scripts/download.scm \
|
|
|
|
guix/scripts/import.scm \
|
|
|
|
guix/scripts/package.scm \
|
|
|
|
guix/scripts/gc.scm \
|
2013-04-21 13:20:00 -04:00
|
|
|
guix/scripts/hash.scm \
|
2013-02-20 17:46:38 -05:00
|
|
|
guix/scripts/pull.scm \
|
2013-04-02 04:44:20 -04:00
|
|
|
guix/scripts/substitute-binary.scm \
|
2013-04-24 17:48:36 -04:00
|
|
|
guix/scripts/refresh.scm \
|
Move base32 code to (guix base32).
* guix/utils.scm (bytevector-quintet-ref, bytevector-quintet-ref-right,
bytevector-quintet-length, bytevector-quintet-fold,
bytevector-quintet-fold-right, make-bytevector->base32-string,
%nix-base32-chars, %rfc4648-base32-chars, bytevector->base32-string,
bytevector->nix-base32-string, bytevector-quintet-set!,
bytevector-quintet-set-right!, base32-string-unfold,
base32-string-unfold-right, make-base32-string->bytevector,
base32-string->bytevector, nix-base32-string->bytevector): Move to...
* guix/base32.scm: ... here. New file.
* tests/utils.scm (%nix-hash, "bytevector->base32-string",
"base32-string->bytevector", "nix-base32-string->bytevector", "sha256
& bytevector->base32-string"): Move to...
* tests/base32.scm: ... here. New file
* guix-download.in, guix/derivations.scm, guix/packages.scm,
guix/snix.scm, tests/builders.scm, tests/derivations.scm: Adjust
accordingly.
* guix.scm (%public-modules): Add `base32'.
2012-11-11 16:33:28 -05:00
|
|
|
guix/base32.scm \
|
2013-05-12 09:46:16 -04:00
|
|
|
guix/records.scm \
|
2013-07-01 17:28:21 -04:00
|
|
|
guix/hash.scm \
|
2012-07-01 09:10:50 -04:00
|
|
|
guix/utils.scm \
|
Add (guix nar) and (guix serialization).
* guix/store.scm (write-int, read-int, write-long-long, read-long-long,
write-padding, write-string, read-string, read-latin1-string,
write-string-list, read-string-list, write-store-path,
read-store-path, write-store-path-list, read-store-path-list): Move to
serialization.scm.
(write-contents, write-file): Move to nar.scm.
* guix/nar.scm, guix/serialization.scm: New files.
* Makefile.am (MODULES): Add them.
2013-04-04 16:29:08 -04:00
|
|
|
guix/serialization.scm \
|
|
|
|
guix/nar.scm \
|
2012-06-13 12:01:25 -04:00
|
|
|
guix/derivations.scm \
|
2012-11-12 17:10:26 -05:00
|
|
|
guix/download.scm \
|
2012-12-04 18:02:22 -05:00
|
|
|
guix/gnu-maintenance.scm \
|
2012-12-07 20:48:17 -05:00
|
|
|
guix/licenses.scm \
|
2012-06-27 17:58:07 -04:00
|
|
|
guix/build-system.scm \
|
2013-03-26 17:14:24 -04:00
|
|
|
guix/build-system/cmake.scm \
|
2012-06-27 17:58:07 -04:00
|
|
|
guix/build-system/gnu.scm \
|
2013-03-03 18:41:46 -05:00
|
|
|
guix/build-system/perl.scm \
|
2013-05-08 18:44:28 -04:00
|
|
|
guix/build-system/python.scm \
|
2012-09-10 16:47:10 -04:00
|
|
|
guix/build-system/trivial.scm \
|
2012-09-12 17:47:49 -04:00
|
|
|
guix/ftp-client.scm \
|
2013-07-14 10:35:37 -04:00
|
|
|
guix/http-client.scm \
|
2013-04-24 17:48:36 -04:00
|
|
|
guix/gnupg.scm \
|
2012-06-13 12:01:25 -04:00
|
|
|
guix/store.scm \
|
2012-10-31 19:50:01 -04:00
|
|
|
guix/ui.scm \
|
2012-11-12 17:10:26 -05:00
|
|
|
guix/build/download.scm \
|
2013-03-26 17:14:24 -04:00
|
|
|
guix/build/cmake-build-system.scm \
|
2012-06-13 12:01:25 -04:00
|
|
|
guix/build/gnu-build-system.scm \
|
2013-03-03 18:41:46 -05:00
|
|
|
guix/build/perl-build-system.scm \
|
2013-05-08 18:44:28 -04:00
|
|
|
guix/build/python-build-system.scm \
|
2012-06-15 04:03:08 -04:00
|
|
|
guix/build/utils.scm \
|
2012-10-29 17:39:46 -04:00
|
|
|
guix/build/union.scm \
|
2013-05-08 17:24:05 -04:00
|
|
|
guix/build/rpath.scm \
|
2012-06-27 19:24:34 -04:00
|
|
|
guix/packages.scm \
|
2012-11-04 13:38:31 -05:00
|
|
|
guix/snix.scm \
|
2012-06-27 19:24:34 -04:00
|
|
|
guix.scm \
|
build: Split Makefile.am into two parts.
* Makefile.am (MODULES): Move gnu/* to gnu-system.am.
(patchdir, dist_patch_DATA, bootstrapdir,
bootstrap_x86_64_linuxdir, bootstrap_i686_linuxdir,
dist_bootstrap_x86_64_linux_DATA, dist_bootstrap_i686_linux_DATA,
nodist_bootstrap_x86_64_linux_DATA, nodist_bootstrap_i686_linux_DATA,
install-data-hook, DISTCLEANFILES, DOWNLOAD_FILE,
gnu/packages/bootstrap/x86_64-linux/guile-2.0.7.tar.xz,
gnu/packages/bootstrap/i686-linux/guile-2.0.7.tar.xz): Move to...
* gnu-system.am: ... here. New file.
2013-06-19 17:19:03 -04:00
|
|
|
$(GNU_SYSTEM_MODULES)
|
2012-06-13 12:01:25 -04:00
|
|
|
|
2013-02-17 16:18:16 -05:00
|
|
|
# Because of the autoload hack in (guix build download), we must build it
|
|
|
|
# first to avoid errors on systems where (gnutls) is unavailable.
|
|
|
|
guix/scripts/download.go: guix/build/download.go
|
distro: Split (distro packages base) into several files.
* distro/packages/base.scm (libsigsegv, gawk, perl, m4, gmp, mpfr, mpc,
ncurses, readline, bash, libtool, libunistring, libffi, pkg-config,
libgc): Move to modules of their own.
(guile-1.8, guile-2.0): Move to...
* distro/packages/guile.scm: ... here.
* distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/gawk.scm, distro/packages/libffi.scm,
distro/packages/libsigsegv.scm, distro/packages/libtool.scm,
distro/packages/libunistring.scm, distro/packages/m4.scm,
distro/packages/multiprecision.scm, distro/packages/ncurses.scm,
distro/packages/perl.scm, distro/packages/pkg-config.scm,
distro/packages/readline.scm: New files.
2012-11-04 16:37:22 -05:00
|
|
|
|
2012-11-03 16:07:52 -04:00
|
|
|
GOBJECTS = $(MODULES:%.scm=%.go) guix/config.go
|
2012-06-13 12:01:25 -04:00
|
|
|
|
2012-08-22 11:24:38 -04:00
|
|
|
nobase_dist_guilemodule_DATA = $(MODULES)
|
|
|
|
|
2012-10-17 15:44:25 -04:00
|
|
|
|
2012-11-03 16:07:52 -04:00
|
|
|
nobase_nodist_guilemodule_DATA = $(GOBJECTS) guix/config.scm
|
2012-06-13 12:01:25 -04:00
|
|
|
|
2013-04-29 15:52:21 -04:00
|
|
|
SCM_TESTS = \
|
Move base32 code to (guix base32).
* guix/utils.scm (bytevector-quintet-ref, bytevector-quintet-ref-right,
bytevector-quintet-length, bytevector-quintet-fold,
bytevector-quintet-fold-right, make-bytevector->base32-string,
%nix-base32-chars, %rfc4648-base32-chars, bytevector->base32-string,
bytevector->nix-base32-string, bytevector-quintet-set!,
bytevector-quintet-set-right!, base32-string-unfold,
base32-string-unfold-right, make-base32-string->bytevector,
base32-string->bytevector, nix-base32-string->bytevector): Move to...
* guix/base32.scm: ... here. New file.
* tests/utils.scm (%nix-hash, "bytevector->base32-string",
"base32-string->bytevector", "nix-base32-string->bytevector", "sha256
& bytevector->base32-string"): Move to...
* tests/base32.scm: ... here. New file
* guix-download.in, guix/derivations.scm, guix/packages.scm,
guix/snix.scm, tests/builders.scm, tests/derivations.scm: Adjust
accordingly.
* guix.scm (%public-modules): Add `base32'.
2012-11-11 16:33:28 -05:00
|
|
|
tests/base32.scm \
|
2013-07-02 16:38:03 -04:00
|
|
|
tests/hash.scm \
|
2012-06-13 12:01:25 -04:00
|
|
|
tests/builders.scm \
|
|
|
|
tests/derivations.scm \
|
2013-02-01 07:16:27 -05:00
|
|
|
tests/ui.scm \
|
2013-05-12 09:46:16 -04:00
|
|
|
tests/records.scm \
|
2012-06-27 19:24:34 -04:00
|
|
|
tests/utils.scm \
|
2012-07-01 11:32:03 -04:00
|
|
|
tests/build-utils.scm \
|
2012-10-29 17:39:46 -04:00
|
|
|
tests/packages.scm \
|
2012-11-04 13:38:31 -05:00
|
|
|
tests/snix.scm \
|
2012-12-09 17:52:59 -05:00
|
|
|
tests/store.scm \
|
2013-04-08 16:54:08 -04:00
|
|
|
tests/nar.scm \
|
2013-04-29 15:52:21 -04:00
|
|
|
tests/union.scm
|
|
|
|
|
|
|
|
SH_TESTS = \
|
2012-10-31 20:46:15 -04:00
|
|
|
tests/guix-build.sh \
|
2012-11-07 18:13:25 -05:00
|
|
|
tests/guix-download.sh \
|
2013-01-05 18:28:06 -05:00
|
|
|
tests/guix-gc.sh \
|
2013-05-11 09:09:56 -04:00
|
|
|
tests/guix-hash.sh \
|
2012-10-31 20:46:15 -04:00
|
|
|
tests/guix-package.sh
|
2012-06-13 12:01:25 -04:00
|
|
|
|
2013-04-29 15:52:21 -04:00
|
|
|
TESTS = $(SCM_TESTS) $(SH_TESTS)
|
|
|
|
|
2012-10-31 18:27:51 -04:00
|
|
|
TEST_EXTENSIONS = .scm .sh
|
|
|
|
|
2012-11-13 16:57:50 -05:00
|
|
|
AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)"
|
|
|
|
|
2012-12-05 18:03:26 -05:00
|
|
|
SCM_LOG_COMPILER = $(top_builddir)/test-env $(GUILE)
|
2012-10-31 18:27:51 -04:00
|
|
|
AM_SCM_LOG_FLAGS = --no-auto-compile -L "$(top_srcdir)"
|
|
|
|
|
2012-12-05 18:03:26 -05:00
|
|
|
SH_LOG_COMPILER = $(top_builddir)/test-env $(SHELL)
|
2012-10-31 18:27:51 -04:00
|
|
|
AM_SH_LOG_FLAGS = -x -e
|
2012-06-13 12:01:25 -04:00
|
|
|
|
2013-05-11 16:37:33 -04:00
|
|
|
# Make sure `tests/guix-gc.sh' runs last, after all the others. Otherwise it
|
|
|
|
# could end up removing files from the store while they are being used by
|
|
|
|
# other instances of the daemon.
|
|
|
|
tests/guix-gc.log: \
|
|
|
|
$(patsubst %.sh,%.log,$(filter-out tests/guix-gc.sh,$(SH_TESTS))) \
|
|
|
|
$(SCM_TESTS:%.scm=%.log)
|
|
|
|
|
|
|
|
|
2012-08-14 12:28:04 -04:00
|
|
|
EXTRA_DIST = \
|
2012-10-25 17:44:27 -04:00
|
|
|
HACKING \
|
2012-11-18 11:46:55 -05:00
|
|
|
ROADMAP \
|
2012-11-18 11:10:47 -05:00
|
|
|
TODO \
|
distro: Add the `guile', `typesetting', and `databases' package modules.
* distro.scm (package-files): Adjust PREFIX-LEN to use the top-level
directory, not %DISTRO-MODULE-DIRECTORY.
* distro/packages/base.scm (guile-reader, guile-reader/guile-1.8,
guile-reader/guile-2.0, lout, recutils): Move to...
* distro/packages/guile.scm, distro/packages/typesetting.scm,
distro/packages/databases.scm: ... here. New files.
* Makefile.am (MODULES): Add them.
(EXTRA_DIST): Add `.dir-locals.el'.
* .dir-locals.el: New file, with settings formerly in `base.scm'.
2012-09-26 16:17:41 -04:00
|
|
|
.dir-locals.el \
|
2013-06-20 16:49:34 -04:00
|
|
|
build-aux/hydra/gnu-system.scm \
|
2012-10-17 15:44:25 -04:00
|
|
|
build-aux/download.scm \
|
2013-07-09 18:27:53 -04:00
|
|
|
build-aux/list-packages.scm \
|
2013-04-17 12:09:43 -04:00
|
|
|
build-aux/sync-synopses.scm \
|
2012-08-14 12:28:04 -04:00
|
|
|
srfi/srfi-64.scm \
|
|
|
|
srfi/srfi-64.upstream.scm \
|
2012-08-14 12:44:52 -04:00
|
|
|
tests/test.drv \
|
2012-08-14 12:28:04 -04:00
|
|
|
build-aux/config.rpath \
|
2012-12-03 16:43:26 -05:00
|
|
|
bootstrap \
|
2012-08-14 12:28:04 -04:00
|
|
|
release.nix \
|
|
|
|
$(TESTS)
|
2012-07-05 18:55:07 -04:00
|
|
|
|
2013-04-29 15:52:21 -04:00
|
|
|
CLEANFILES = \
|
|
|
|
$(GOBJECTS) \
|
2013-05-11 16:42:38 -04:00
|
|
|
$(SCM_TESTS:tests/%.scm=%.log)
|
2012-06-13 12:01:25 -04:00
|
|
|
|
2013-04-29 16:00:24 -04:00
|
|
|
AM_V_GUILEC = $(AM_V_GUILEC_$(V))
|
|
|
|
AM_V_GUILEC_ = $(AM_V_GUILEC_$(AM_DEFAULT_VERBOSITY))
|
|
|
|
AM_V_GUILEC_0 = @echo " GUILEC" $@;
|
|
|
|
|
2013-02-08 18:05:24 -05:00
|
|
|
# XXX: Use the C locale for when Guile lacks
|
|
|
|
# <http://git.sv.gnu.org/cgit/guile.git/commit/?h=stable-2.0&id=e2c6bf3866d1186c60bacfbd4fe5037087ee5e3f>.
|
2012-06-13 12:01:25 -04:00
|
|
|
.scm.go:
|
2013-04-29 16:00:24 -04:00
|
|
|
$(AM_V_GUILEC)$(MKDIR_P) `dirname "$@"` ; \
|
2013-02-08 18:05:24 -05:00
|
|
|
LC_ALL=C \
|
2012-11-12 18:33:43 -05:00
|
|
|
$(top_builddir)/pre-inst-env \
|
|
|
|
$(GUILD) compile -L "$(top_builddir)" -L "$(top_srcdir)" \
|
|
|
|
-Wformat -Wunbound-variable -Warity-mismatch \
|
|
|
|
--target="$(host)" \
|
2012-06-13 12:01:25 -04:00
|
|
|
-o "$@" "$<"
|
|
|
|
|
|
|
|
SUFFIXES = .go
|
|
|
|
|
|
|
|
# Make sure source files are installed first, so that the mtime of
|
|
|
|
# installed compiled files is greater than that of installed source
|
|
|
|
# files. See
|
|
|
|
# <http://lists.gnu.org/archive/html/guile-devel/2010-07/msg00125.html>
|
|
|
|
# for details.
|
|
|
|
guix_install_go_files = install-nobase_nodist_guilemoduleDATA
|
|
|
|
$(guix_install_go_files): install-nobase_dist_guilemoduleDATA
|
2012-06-29 16:22:48 -04:00
|
|
|
|
|
|
|
SUBDIRS = po
|
|
|
|
|
2012-10-13 10:05:01 -04:00
|
|
|
info_TEXINFOS = doc/guix.texi
|
2013-07-06 18:29:50 -04:00
|
|
|
EXTRA_DIST += \
|
|
|
|
doc/fdl-1.3.texi \
|
|
|
|
doc/images/bootstrap-graph.dot \
|
|
|
|
doc/images/bootstrap-graph.eps
|
|
|
|
|
|
|
|
infoimagedir = $(infodir)/images
|
|
|
|
dist_infoimage_DATA = doc/images/bootstrap-graph.png
|
|
|
|
|
|
|
|
# Try hard to obtain an image size and aspect that's reasonable for inclusion
|
|
|
|
# in an Info or PDF document.
|
|
|
|
DOT_OPTIONS = \
|
|
|
|
-Tpng -Gratio=.9 -Gnodesep=.005 -Granksep=.00005 \
|
|
|
|
-Nfontsize=9 -Nheight=.1 -Nwidth=.1
|
|
|
|
|
|
|
|
.dot.png:
|
|
|
|
dot -Tpng $(DOT_OPTIONS) < "$<" > "$@.tmp"
|
|
|
|
mv "$@.tmp" "$@"
|
|
|
|
|
|
|
|
.dot.eps:
|
|
|
|
dot -Teps $(DOT_OPTIONS) < "$<" > "$@.tmp"
|
|
|
|
mv "$@.tmp" "$@"
|
|
|
|
|
|
|
|
doc/guix.pdf: doc/images/bootstrap-graph.png
|
|
|
|
doc/guix.info: doc/images/bootstrap-graph.png
|
|
|
|
doc/guix.ps: doc/images/bootstrap-graph.eps
|
2012-10-13 10:05:01 -04:00
|
|
|
|
2012-12-03 17:04:47 -05:00
|
|
|
if BUILD_DAEMON
|
|
|
|
|
|
|
|
include daemon.am
|
|
|
|
|
|
|
|
endif BUILD_DAEMON
|
|
|
|
|
2012-06-29 16:22:48 -04:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2012-11-03 16:11:02 -04:00
|
|
|
AM_DISTCHECK_CONFIGURE_FLAGS = \
|
2012-11-03 16:43:30 -04:00
|
|
|
--with-libgcrypt-prefix="$(LIBGCRYPT_PREFIX)" \
|
2012-12-05 18:04:43 -05:00
|
|
|
--with-nix-prefix="$(NIX_PREFIX)" \
|
|
|
|
--enable-daemon
|
2013-04-17 12:09:43 -04:00
|
|
|
|
2013-05-12 10:26:12 -04:00
|
|
|
dist-hook: sync-synopses gen-ChangeLog assert-no-store-file-names
|
2013-05-12 10:14:25 -04:00
|
|
|
|
|
|
|
sync-synopses:
|
2013-04-17 12:09:43 -04:00
|
|
|
-$(top_builddir)/pre-inst-env $(GUILE) \
|
|
|
|
$(top_srcdir)/build-aux/sync-synopses.scm
|
2013-05-12 10:14:25 -04:00
|
|
|
|
|
|
|
gen-ChangeLog:
|
|
|
|
if test -d .git; then \
|
|
|
|
$(top_srcdir)/build-aux/gitlog-to-changelog \
|
|
|
|
> $(distdir)/cl-t; \
|
|
|
|
rm -f $(distdir)/ChangeLog; \
|
|
|
|
mv $(distdir)/cl-t $(distdir)/ChangeLog; \
|
|
|
|
fi
|
|
|
|
|
2013-05-12 10:26:12 -04:00
|
|
|
# Make sure we're not shipping a file that embeds a local /nix/store file name.
|
|
|
|
assert-no-store-file-names:
|
|
|
|
if grep -r --exclude=*.texi --exclude=*.info \
|
|
|
|
"$(storedir)/[a-z0-9]{32}-" $(distdir) ; \
|
|
|
|
then \
|
|
|
|
echo "error: store file names embedded in the distribution" >&2 ; \
|
|
|
|
exit 1 ; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
.PHONY: sync-synopses gen-ChangeLog assert-no-store-file-names
|