aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-04-03 21:24:19 +0100
committerChristopher Baines <mail@cbaines.net>2020-04-03 21:24:19 +0100
commitf235c8ad0aa1ea39cfe8a1a9d77bfebbcd018633 (patch)
tree9090866c0e03ab3d7d17e8dfb88635f3eaaf8a25 /configure.ac
downloadbuild-coordinator-f235c8ad0aa1ea39cfe8a1a9d77bfebbcd018633.tar
build-coordinator-f235c8ad0aa1ea39cfe8a1a9d77bfebbcd018633.tar.gz
Initial commit
Setup done with the aid of [1]. 1: https://www.draketo.de/proj/with-guise-and-guile/guile-projects-with-autotools.html
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac14
1 files changed, 14 insertions, 0 deletions
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