Files
businesscard-qrcode/configure.ac

27 lines
731 B
Plaintext
Raw Normal View History

2018-08-14 16:38:43 +02:00
#AC_PREREQ([2.69])
2018-08-15 23:21:17 +02:00
AC_INIT([businesscard-qrcode], [1.2], [marc@waeckerlin.org])
2018-08-14 16:38:43 +02:00
AM_INIT_AUTOMAKE([1.9 tar-pax])
AC_ARG_WITH([latexdir],
[AS_HELP_STRING([--with-latexdir=DIR], [latex template files])],
[latexdir=$withval],
[latexdir='${datadir}/texlive/texmf-dist/tex/latex/@PACKAGE_NAME@'])
AC_SUBST([latexdir], [$latexdir])
# Checks for programs.
AC_CHECK_PROG([pandoc])
AC_CHECK_PROG([convert])
AC_CHECK_PROG([xelatex])
EXAMPLES="example john-doe-hongkong \
peter-muster-example-company-zuerich special-papersize \
2025-11-08 17:09:38 +01:00
texstudio_d30266 photo-example photo-in-qr-example"
2018-08-14 16:38:43 +02:00
AC_SUBST(EXAMPLES)
AC_CONFIG_FILES([examples/makefile
makefile
screenshots/makefile])
AC_OUTPUT