From f235c8ad0aa1ea39cfe8a1a9d77bfebbcd018633 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Fri, 3 Apr 2020 21:24:19 +0100 Subject: Initial commit Setup done with the aid of [1]. 1: https://www.draketo.de/proj/with-guise-and-guile/guile-projects-with-autotools.html --- configure.ac | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 configure.ac (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..e60e922 --- /dev/null +++ b/configure.ac @@ -0,0 +1,14 @@ +AC_INIT([guix-data-service], [m4_translit(m4_esyscmd([cat VERSION]),m4_newline)]) +AC_CONFIG_AUX_DIR([build-aux]) +AM_INIT_AUTOMAKE([gnu color-tests -Wall -Wno-portability foreign]) + +GUILE_PKG([3.0]) +GUILE_PROGS +if test "x$GUILD" = "x"; then + AC_MSG_ERROR(['guild' binary not found; please check your guile-3.x installation.]) +fi + +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([pre-inst-env], [chmod +x pre-inst-env]) + +AC_OUTPUT -- cgit v1.2.3