]> git.pld-linux.org Git - packages/gnome-shell-extension-workspacebar.git/blob - gnome-shell-extension-workspacebar.spec
- no BRs needed
[packages/gnome-shell-extension-workspacebar.git] / gnome-shell-extension-workspacebar.spec
1 %define         extname         workspacebar
2 Summary:        A toolbar for your panel that allows you to switch workspaces
3 Name:           gnome-shell-extension-%{extname}
4 Version:        20121027
5 Release:        1
6 Group:          X11/Applications
7 License:        GPLv2
8 # $ git clone git://github.com/mbokil/workspacebar.git
9 # $ cd workspacebar/
10 # $ git archive --format=tar --prefix=%{name}-%{version}/ master | xz > ../%{name}-%{version}.tar.xz
11 Source0:        %{extname}-%{version}.tar.xz
12 # Source0-md5:  17535842481ad8d699c977eff06345af
13 URL:            http://markbokil.com/downloads/extensions/
14 Requires:       gnome-shell >= 3.6.0
15 BuildArch:      noarch
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 A toolbar for your panel that allows you to switch workspaces.
20 Latest update includes a panel position option of left, center,
21 and right. Also there is an option to display the Overview on mouse
22 entry.
23
24 %prep
25 %setup -q -n %{extname}-%{version}
26
27 %build
28
29 %install
30 rm -rf $RPM_BUILD_ROOT
31 install -d $RPM_BUILD_ROOT%{_datadir}/glib-2.0/schemas \
32         $RPM_BUILD_ROOT%{_datadir}/gnome-shell/extensions/workspace-bar@markbokil.com
33
34 install schemas/org.gnome.shell.extensions.workspacebar.gschema.xml $RPM_BUILD_ROOT%{_datadir}/glib-2.0/schemas/
35 install *.js* $RPM_BUILD_ROOT%{_datadir}/gnome-shell/extensions/workspace-bar@markbokil.com/
36 install *.css $RPM_BUILD_ROOT%{_datadir}/gnome-shell/extensions/workspace-bar@markbokil.com/
37
38 %clean
39 rm -rf $RPM_BUILD_ROOT
40
41 %post
42 %glib_compile_schemas
43
44 %postun
45 %glib_compile_schemas
46
47 %files
48 %defattr(644,root,root,755)
49 %{_datadir}/glib-2.0/schemas/org.gnome.shell.extensions.workspacebar.gschema.xml
50 %{_datadir}/gnome-shell/extensions/workspace-bar*
This page took 0.059329 seconds and 3 git commands to generate.