Enable auto-move-windows extensions
This commit is contained in:
parent
ce3a812924
commit
39affdd192
@ -1,6 +1,6 @@
|
|||||||
Name: gnome-shell-extensions
|
Name: gnome-shell-extensions
|
||||||
Version: 3.0.0
|
Version: 3.0.0
|
||||||
Release: 4.6d56cfgit%{?dist}
|
Release: 5.6d56cfgit%{?dist}
|
||||||
Summary: Modify and extend GNOME Shell functionality and behavior
|
Summary: Modify and extend GNOME Shell functionality and behavior
|
||||||
Group: User Interface/Desktops
|
Group: User Interface/Desktops
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
@ -29,6 +29,7 @@ Enabled extensions:
|
|||||||
* dock
|
* dock
|
||||||
* windowsNavigator
|
* windowsNavigator
|
||||||
* user-theme
|
* user-theme
|
||||||
|
* auto-move-windows
|
||||||
|
|
||||||
%package common
|
%package common
|
||||||
Summary: Files common to GNOME Shell Extensions
|
Summary: Files common to GNOME Shell Extensions
|
||||||
@ -45,7 +46,7 @@ Group: User Interface/Desktops
|
|||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Requires: %{name}-common = %{version}-%{release}
|
Requires: %{name}-common = %{version}-%{release}
|
||||||
|
|
||||||
%description alternate-tab
|
%description alternate-tab
|
||||||
Lets you use classic Alt+Tab (window-based instead of app-based) in GNOME Shell.
|
Lets you use classic Alt+Tab (window-based instead of app-based) in GNOME Shell.
|
||||||
GNOME Shell groups multiple instances of the same application together.
|
GNOME Shell groups multiple instances of the same application together.
|
||||||
This extension disables grouping.
|
This extension disables grouping.
|
||||||
@ -92,6 +93,17 @@ Requires: %{name}-common = %{version}-%{release}
|
|||||||
Lets the user select a custom theme for the Gnome shell. It will allow you to
|
Lets the user select a custom theme for the Gnome shell. It will allow you to
|
||||||
apply a style from /.themes/[themeName]/gnome-shell/gnome-shell.css
|
apply a style from /.themes/[themeName]/gnome-shell/gnome-shell.css
|
||||||
|
|
||||||
|
%package auto-move-windows
|
||||||
|
Summary: Assign specific workspaces to applications
|
||||||
|
Group: User Interface/Desktops
|
||||||
|
License: GPLv2+
|
||||||
|
Requires: %{name}-common = %{version}-%{release}
|
||||||
|
|
||||||
|
%description auto-move-windows
|
||||||
|
Lets you manage your workspaces more easily, assigning a specific workspace to
|
||||||
|
each application as soon as it creates a window, in a manner configurable with a
|
||||||
|
GSettings key.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n gnome-shell-extensions
|
%setup -q -n gnome-shell-extensions
|
||||||
|
|
||||||
@ -99,7 +111,7 @@ apply a style from /.themes/[themeName]/gnome-shell/gnome-shell.css
|
|||||||
# since we build from a git checkout
|
# since we build from a git checkout
|
||||||
[ -x autogen.sh ] && NOCONFIGURE=1 ./autogen.sh
|
[ -x autogen.sh ] && NOCONFIGURE=1 ./autogen.sh
|
||||||
|
|
||||||
%configure --enable-extensions="alternate-tab alternative-status-menu dock windowsNavigator user-theme"
|
%configure --enable-extensions="alternate-tab alternative-status-menu dock windowsNavigator user-theme auto-move-windows"
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
@ -134,13 +146,27 @@ make install DESTDIR=$RPM_BUILD_ROOT
|
|||||||
%{_datadir}/glib-2.0/schemas/org.gnome.shell.extensions.user-theme.gschema.xml
|
%{_datadir}/glib-2.0/schemas/org.gnome.shell.extensions.user-theme.gschema.xml
|
||||||
%{_datadir}/gnome-shell/extensions/user-theme*
|
%{_datadir}/gnome-shell/extensions/user-theme*
|
||||||
|
|
||||||
|
%files auto-move-windows
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_datadir}/glib-2.0/schemas/org.gnome.shell.extensions.auto-move-windows.gschema.xml
|
||||||
|
%{_datadir}/gnome-shell/extensions/auto-move-windows*
|
||||||
|
|
||||||
%posttrans user-theme
|
%posttrans user-theme
|
||||||
glib-compile-schemas --allow-any-name %{_datadir}/glib-2.0/schemas || :
|
glib-compile-schemas --allow-any-name %{_datadir}/glib-2.0/schemas || :
|
||||||
|
|
||||||
%postun user-theme
|
%postun user-theme
|
||||||
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
|
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
|
||||||
|
|
||||||
|
%posttrans auto-move-windows
|
||||||
|
glib-compile-schemas --allow-any-name %{_datadir}/glib-2.0/schemas || :
|
||||||
|
|
||||||
|
%postun auto-move-windows
|
||||||
|
glib-compile-schemas %{_datadir}/glib-2.0/schemas &> /dev/null || :
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Apr 11 2011 Mohamed El Morabity <melmorabity@fedoraproject.org> - 3.0.0-5.6d56cfgit
|
||||||
|
- Enable auto-move-windows extension
|
||||||
|
|
||||||
* Sun Apr 11 2011 Rahul Sundaram <sundaram@fedoraproject.org> - 3.0.0-4.6d56cfgit
|
* Sun Apr 11 2011 Rahul Sundaram <sundaram@fedoraproject.org> - 3.0.0-4.6d56cfgit
|
||||||
- Add glib2-devel as build requires
|
- Add glib2-devel as build requires
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user