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.
34 lines
853 B
34 lines
853 B
m4_define([pkg_version], [1.0.0]) |
|
dnl m4_define([pkg_revision], [901]) |
|
m4_define([pkg_version], m4_ifdef([pkg_revision], [pkg_version.pkg_revision], [pkg_version])) |
|
m4_define([rpm_revision], m4_ifdef([pkg_revision], [0.`date '+%y%m%d'`], [1])) |
|
|
|
AC_INIT([e16-themes], [pkg_version], [enlightenment-devel@lists.sourceforge.net]) |
|
AM_INIT_AUTOMAKE([foreign]) |
|
|
|
AC_SUBST(E_RPM_REVISION, [rpm_revision]) |
|
|
|
dnl reasonable guesses for where stuff is installed |
|
if test "x$prefix" = "xNONE"; then |
|
prefix=$ac_default_prefix |
|
fi |
|
if test "x$exec_prefix" = "xNONE"; then |
|
exec_prefix=$prefix |
|
fi |
|
|
|
AM_MAINTAINER_MODE |
|
|
|
AC_PROG_MAKE_SET |
|
AC_PROG_INSTALL |
|
|
|
THEMES="BlueSteel BrushedMetal-Tigert Ganymede ShinyMetal" |
|
AC_SUBST(THEMES) |
|
|
|
AC_OUTPUT([ |
|
Makefile |
|
BlueSteel/Makefile |
|
BrushedMetal-Tigert/Makefile |
|
Ganymede/Makefile |
|
ShinyMetal/Makefile |
|
e16-themes.spec |
|
])
|
|
|