source: projects/specs/trunk/d/d-feet/d-feet-vl.spec @ 9114

Revision 9114, 2.0 KB checked in by Takemikaduchi, 9 years ago (diff)

fix typo

Line 
1Summary:        D-Bus Debugger
2Summary(ja):    D-Bus デバッガ
3Name:           d-feet
4Version:        0.1.15
5Release:        2%{?_dist_release}
6License:        GPLv2
7Group:          User Interface/Desktops
8URL:            https://live.gnome.org/DFeet/
9BuildArch:      noarch
10
11Source: http://ftp.gnome.org/pub/GNOME/sources/%{name}/0.1/%{name}-%{version}.tar.xz
12
13BuildRoot: %{_tmppath}/%{name}-%{version}-root
14
15BuildRequires:  dbus-python-devel
16BuildRequires:  pygtk2-devel
17BuildRequires:  python-setuptools
18
19Requires:       pygtk2
20Requires:       dbus-python
21
22
23Requires(postun,posttrans):     desktop-file-utils
24
25Vendor:         Project Vine
26Distribution:   Vine Linux
27Packager:       Takemikaduchi
28
29
30%description
31D-Feet is an easy to use D-Bus debugger. D-Feet can be used to inspect D-Bus
32interfaces of running programs and invoke methods on those interfaces.
33
34%description -l ja
35D-Feet は簡単に使える D-Bus デバッガです。D-Feet は実行中のプログラムの D-Bus
36インタフェースを調べたり、これらのインタフェースのメソッドを呼び出すときに
37使えるプログラムです。
38
39%prep
40%setup -q
41
42%build
43python setup.py build
44
45%install
46rm -rf $RPM_BUILD_ROOT
47
48python setup.py install --skip-build --root $RPM_BUILD_ROOT
49
50%clean
51rm -rf $RPM_BUILD_ROOT
52
53%post
54touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
55
56%postun
57if [ $1 -eq 0 ]; then
58  touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
59  gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
60  update-desktop-database -q &> /dev/null ||:
61fi
62
63%posttrans
64gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
65update-desktop-database -q &> /dev/null ||:
66
67
68%files
69%defattr(-,root,root,-)
70%doc COPYING README NEWS
71%{_bindir}/%{name}
72%{python_sitelib}/d_feet-%{version}-py2.7.egg-info
73%{python_sitelib}/dfeet
74%{_datadir}/applications/dfeet.desktop
75%{_datadir}/dfeet
76%{_datadir}/icons/hicolor/*/*/*
77
78
79%changelog
80* Sun Nov 23 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.15-2
81- fix typo in Group
82
83* Sat Oct 20 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.15-1
84- initial build
Note: See TracBrowser for help on using the repository browser.