* Install the "classic mode" * Enable windowNavigator extension (this means we have everything except example and xrandr, the same as in the Ubuntu gnome3-team's PPA)
21 lines
733 B
Makefile
Executable File
21 lines
733 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
|
include /usr/share/cdbs/1/class/gnome.mk
|
|
include /usr/share/gnome-pkg-tools/1/rules/gnome-version.mk
|
|
include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk
|
|
-include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk
|
|
|
|
EXTENSIONS_ENABLED="alternate-tab auto-move-windows workspace-indicator\
|
|
alternative-status-menu native-window-placement user-theme\
|
|
apps-menu drive-menu places-menu windowsNavigator systemMonitor\
|
|
default-min-max launch-new-instance static-workspaces window-list\
|
|
windowsNavigator"
|
|
|
|
EXTENSIONS_DISABLED="example xrandr-indicator"
|
|
|
|
DEB_CONFIGURE_EXTRA_FLAGS := \
|
|
--enable-extensions=$(EXTENSIONS_ENABLED) \
|
|
--enable-classic-mode \
|
|
$(NULL)
|