/usr/share/dune/aclocal/inkscape.m4 is in libdune-common-dev 2.3.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 | # $Id$
# Check for inkscape and define automake conditional
AC_DEFUN([DUNE_INKSCAPE],[
AC_CHECK_PROG([INKSCAPE], [inkscape], [inkscape], [no])
AC_ARG_VAR([INKSCAPE], [path to inkscape to regenerate .png's from .svg's.])
AM_CONDITIONAL([INKSCAPE], [test "x$INKSCAPE" != xfalse && test "x$INKSCAPE" != xno])
])
|