source: projects/specs/trunk/b/baobab/baobab-vl.spec @ 6890

Revision 6890, 3.2 KB checked in by Takemikaduchi, 12 years ago (diff)

GNOME-3.6.0 & Cinnamon-1.6.1

Line 
1%define name    baobab
2%define version 3.6.0
3%define release 1%{?_dist_release}
4
5Summary:        A graphical disk usage analyzer
6Summary(ja):    グラフィカルなハードディスク使用量の分析ツール
7Name:           %{name}
8Version:        %{version}
9Release:        %{release}
10Source0:        http://ftp.gnome.org/pub/GNOME/sources/%{name}/3.6/%{name}-%{version}.tar.xz
11License:        GPLv2+
12Group:          User Interface/Desktops
13URL:            http://www.gnome.org
14
15BuildRequires:  gtk3-devel
16BuildRequires:  itstool
17
18Requires(postun,posttrans):     glib2
19Requires(postun,posttrans):     desktop-file-utils
20
21BuildRoot:      %{_tmppath}/%{name}-%{version}-root
22
23Vendor:         Project Vine
24Distribution:   Vine Linux
25Packager:       Takemikaduchi
26
27%description
28A graphical tool to analyse disk usage in local and remote filesystems.
29
30Baobab is able to scan either specific directories (local or remote) or
31the whole filesystem, in order to give the user a graphical tree repre-
32sentation including each directory size or percentage in the branch.
33It also includes a complete file-search functionality and auto-detects
34in real-time any changes made to your home directory as far as any
35mounted/unmounted device.
36
37%description -l ja
38ローカル及びリモートファイルシステムの、ハードディスク使用量をグラフィ
39カルに分析するツールです。
40
41Baobab は、各ディレクトリのサイズと使用量をグラフィカルに表示する為に、
42指定したディレクトリ(ローカルまたはリモート)やファイルシステム全体を
43スキャンできます。また完全なファイル検索機能や、ホームディレクトリへの
44変更をリアルタイムに自動で検出する機能も含んでいます。
45
46
47%prep
48
49%setup -q
50
51%build
52%configure
53make %{?_smp_mflags}
54
55
56%install
57rm -rf $RPM_BUILD_ROOT
58
59make install DESTDIR=$RPM_BUILD_ROOT
60
61%find_lang %{name} --all-name --with-gnome
62
63
64%clean
65rm -rf ${RPM_BUILD_ROOT}
66
67
68%post
69touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
70
71%postun
72touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
73gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
74glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
75update-desktop-database -q &> /dev/null ||:
76
77%posttrans
78glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
79gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
80update-desktop-database -q &> /dev/null ||:
81
82
83%files -f %{name}.lang
84%defattr(-,root,root,-)
85%{_bindir}/%{name}
86%{_datadir}/applications/%{name}.desktop
87%{_datadir}/%{name}/pixmaps/shot.png
88%{_datadir}/glib-2.0/schemas/org.gnome.baobab.gschema.xml
89%{_datadir}/icons/hicolor/*/*/*
90%{_mandir}/man1/%{name}.1.gz
91
92%changelog
93* Sun Sep 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.0-1
94- new upstream release
95- remove old patches and required packages
96
97* Sat Sep 06 2008 Shu KONNO <owa@bg.wakwak.com> 2.4.2-1vl5
98- applied new versioning policy, spec in utf-8
99
100* Fri Jan 26 2007 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.4.2-0vl2
101- add patch1; workaround to fix non utf-8 character encoding.
102- add patch2 to update ja.po.
103- coorrectly handle gconf scheme at post & preun.
104
105* Sun Sep 24 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.4.2-0vl1
106- initial build for Vine Linux
Note: See TracBrowser for help on using the repository browser.