You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
36 lines
1.2 KiB
dnl -*- Autoconf -*- |
|
|
|
AC_INIT(bible-tools, 1.0) |
|
AC_SUBST(HVERSION, "\"1.0\"") |
|
AC_SUBST(AUTHOR, "\"\"") |
|
AC_SUBST(COPYRIGHT, "'(2022)") |
|
AC_SUBST(LICENSE, gpl3+) |
|
AC_CONFIG_SRCDIR(bible-tools.scm) |
|
AC_CONFIG_AUX_DIR([build-aux]) |
|
AM_INIT_AUTOMAKE([1.12 gnu 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]) |
|
AC_CONFIG_FILES([scripts/bible-app],[chmod +x scripts/bible-app]) |
|
AC_CONFIG_FILES([scripts/word-counter],[chmod +x scripts/word-counter]) |
|
AC_CONFIG_FILES([scripts/bible2latex],[chmod +x scripts/bible2latex]) |
|
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-2.x installation.]) |
|
fi |
|
|
|
dnl Hall auto-generated guile-module dependencies |
|
|
|
|
|
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_OUTPUT
|
|
|