diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..7b53d7e --- /dev/null +++ b/configure.ac @@ -0,0 +1,36 @@ + +dnl -*- Autoconf -*- + +AC_INIT([guile-drmaa], [0.1]) +AC_SUBST(AUTHOR, "\"Ricardo Wurmus\"") +AC_SUBST(COPYRIGHT, "'(2020 2021)") +AC_SUBST(LICENSE, gpl3+) +AC_CONFIG_AUX_DIR([build-aux]) +AM_INIT_AUTOMAKE([1.12 silent-rules subdir-objects color-tests parallel-tests -Woverride -Wno-portability]) +AM_SILENT_RULES([yes]) + +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([pre-inst-env], [chmod +x pre-inst-env]) + +dnl Search for 'guile' and 'guild'. This macro defines +dnl 'GUILE_EFFECTIVE_VERSION'. +GUILE_PKG([3.0 2.2 2.0]) +GUILE_PROGS +GUILE_SITE_DIR +if test "x$GUILD" = "x"; then + AC_MSG_ERROR(['guild' binary not found; please check your Guile installation.]) +fi + +dnl Installation directories for .scm and .go files. +guilemoduledir="${datarootdir}/guile/site/$GUILE_EFFECTIVE_VERSION" +guileobjectdir="${libdir}/guile/$GUILE_EFFECTIVE_VERSION/site-ccache" +AC_SUBST([guilemoduledir]) +AC_SUBST([guileobjectdir]) + +AC_PATH_PROG([SED], [sed]) +if test "x$SED" = "x"; then + AC_MSG_ERROR(['sed' could not be found; it is needed during the build.]) +fi + + +AC_OUTPUT |