source: projects/specs/trunk/t/tintwizard/tintwizard-vl.spec @ 1734

Revision 1734, 1.7 KB checked in by kudoh, 14 years ago (diff)
Line 
1Name:           tintwizard
2Version:        0.3.4
3Release:        1%{?_dist_release}
4Summary:        graphical user interface to generate configs and apply to them tint2
5Summary(ja):    tint2 に適用される config を生成するためのグラフィカルユーザーインターフェース
6
7Group:          User Interface/Desktops
8License:        GPLv3
9URL:            http://code.google.com/p/tintwizard/
10Source0:        http://tintwizard.googlecode.com/files/%{name}-%{version}.tar.gz
11Source1:        %{name}.desktop
12Source2:        LICENSE
13
14BuildRoot:      %{_tmppath}/%{name}-%{version}-root
15BuildArch:      noarch
16BuildRequires:  desktop-file-utils
17Requires:       tint2 python pygtk2
18
19%description
20This project aims to provide an easy way to change
21the appearance of tint2.
22Through an easy-to-use graphical user interface,
23you can generate configs and apply to them tint2.
24
25%description -l ja
26このプロジェクトは tint2 の外観を容易に変更する方法の
27提供を目的としています。
28簡単に使えるグラフィカルユーザーインターフェイスを介して
29config を生成し、それらを tint2 に適用することができます。
30
31
32%prep
33%setup -q -c %{name}-%{version}
34
35# Add a copy of the license
36cp %{SOURCE2} .
37
38%build
39
40%install
41rm -rf $RPM_BUILD_ROOT
42
43mkdir -p $RPM_BUILD_ROOT/%{_bindir}
44install -m 755 %{name}.py $RPM_BUILD_ROOT/%{_bindir}
45
46desktop-file-install                                    \
47        --dir=%{buildroot}%{_datadir}/applications      \
48        %{SOURCE1}
49
50%clean
51rm -rf $RPM_BUILD_ROOT
52
53
54%files
55%defattr(-,root,root,-)
56%doc ChangeLog README
57%{_bindir}/%{name}.py
58%{_datadir}/applications/%{name}.desktop
59
60%changelog
61* Tue Aug 31 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.3.4-1
62- initial build for VineSeed
Note: See TracBrowser for help on using the repository browser.