Arc-39-theme/configure.ac

36 lines
1.2 KiB
Plaintext
Raw Normal View History

2015-05-28 17:41:22 +02:00
AC_INIT(
[arc-theme],
2018-01-08 20:17:09 +01:00
[20180114],
2018-01-10 18:37:18 +01:00
[https://github.com/NicoHood/arc-theme/issues],
2015-05-28 17:41:22 +02:00
[arc-theme],
2018-01-10 18:37:18 +01:00
[https://github.com/NicoHood/arc-theme],
2015-05-28 17:41:22 +02:00
[]
)
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
2015-12-28 17:54:04 +01:00
AM_INIT_AUTOMAKE([no-dist-gzip dist-xz foreign])
2015-05-28 17:41:22 +02:00
AC_PROG_MKDIR_P
2015-07-10 16:38:57 +02:00
ARC_ENABLE([LIGHT], [light], [Arc Light], [disable])
ARC_ENABLE([DARKER], [darker], [Arc Darker], [disable])
ARC_ENABLE([DARK], [dark], [Arc Dark], [disable])
2015-08-14 00:05:57 +02:00
ARC_ENABLE([CINNAMON], [cinnamon], [Cinnamon], [disable])
2015-06-03 22:23:22 +02:00
ARC_ENABLE([GNOME_SHELL], [gnome-shell], [GNOME Shell], [disable])
ARC_ENABLE([GTK2], [gtk2], [GTK2], [disable])
ARC_ENABLE([GTK3], [gtk3], [GTK3], [disable])
ARC_ENABLE([METACITY], [metacity], [Metacity], [disable])
ARC_ENABLE([UNITY], [unity], [Unity], [disable])
ARC_ENABLE([XFWM], [xfwm], [XFWM], [disable])
ARC_ENABLE([TRANSPARENCY], [transparency], [transparency], [disable])
2015-05-28 17:41:22 +02:00
AS_IF([test "x$ENABLE_GNOME_SHELL$ENABLE_GTK3" != xnono], [ARC_GNOME])
2015-05-28 17:41:22 +02:00
AC_CONFIG_FILES([
common/Makefile
extra/Makefile
Makefile
])
AC_OUTPUT