e16-themes/configure.in

38 lines
768 B
Plaintext

AC_INIT(configure.in)
AM_INIT_AUTOMAKE(e16-themes, 0.16.8.0.1)
AM_MAINTAINER_MODE
THEMES="BlueSteel BrushedMetal-Tigert Ganymede ShinyMetal"
dnl reasonable guesses for where stuff is installed
if test "x$prefix" = "xNONE"; then
prefix="/usr/local"
fi
if test "x$exec_prefix" = "xNONE"; then
exec_prefix=$prefix
fi
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_ARG_ENABLE(fsstd,
[ --enable-fsstd install files following FSSTD [default=yes]], ,enable_fsstd=yes)
if test "x$enable_fsstd" != "xyes"; then
datadir=${prefix}
fi
ENLIGHTENMENT_ROOT=`eval echo ${datadir}/e16`
AC_SUBST(ENLIGHTENMENT_ROOT)
AC_SUBST(THEMES)
AC_OUTPUT([
Makefile
BlueSteel/Makefile
BrushedMetal-Tigert/Makefile
Ganymede/Makefile
ShinyMetal/Makefile
e16-themes.spec
])