From f93126a099712286b760900c1dc543b54a5ebf1c Mon Sep 17 00:00:00 2001 From: Filip Lajszczak Date: Sat, 11 Nov 2023 22:21:55 +0000 Subject: Add Sourcehut publisher. * haunt/publisher/sourcehut.scm: New file. * configure.ac: Check for presence of hut and tar. * Makefile.am: Conditionally add sourcehut publisher to build. * guix.scm: Add hut and tar inputs. --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index a1c4620..02c6c8f 100644 --- a/configure.ac +++ b/configure.ac @@ -36,4 +36,10 @@ AC_CHECK_FUNC([inotify_init], [AM_CONDITIONAL(HAVE_INOTIFY, true)], [AM_CONDITIO AC_PATH_PROG([RSYNC], [rsync]) AM_CONDITIONAL([HAVE_RSYNC], [test "x$RSYNC" != "x"]) +AC_PATH_PROG([HUT], [hut]) +AM_CONDITIONAL([HAVE_HUT], [test "x$HUT" != "x"]) + +AC_PATH_PROG([TAR], [tar]) +AM_CONDITIONAL([HAVE_TAR], [test "x$TAR" != "x"]) + AC_OUTPUT -- cgit v1.2.3