source: projects/specs/trunk/x/xfce4-mount-plugin/xfce4-mount-plugin-vl.spec @ 6284

Revision 6284, 1.8 KB checked in by Takemikaduchi, 12 years ago (diff)

Xfce-4.10.0 + thunderbird-13.0

Line 
1Name:           xfce4-mount-plugin
2Summary:        Mount/unmount plugin for the Xfce4 panel
3Summary(ja):    Xfce パネル用 マウント/アンマウントプラグイン
4Version:        0.6.4
5Release:        1%{?_dist_release}
6
7Group:          User Interface/Desktops
8License:        GPLv2+
9URL:            http://goodies.xfce.org/projects/panel-plugins/%{name}
10
11Source0:        http://archive.xfce.org/src/panel-plugins/%{name}/0.6/%{name}-%{version}.tar.bz2
12
13BuildRoot:      %{_tmppath}/%{name}-%{version}-root
14
15BuildRequires:  libxfce4util-devel >= 4.8.0
16BuildRequires:  libxfce4ui-devel >= 4.8.0
17BuildRequires:  xfce4-panel-devel >= 4.8.0
18
19Vendor:         Project Vine
20Distribution:   Vine Linux
21Packager:       Takemikaduchi
22
23
24%description
25This little plugin behaves like the "kwikdisk - removable media utility"
26shipped with KDE.
27
28%description -l ja
29この小さなプラグインは KDE に同梱されている「kwikdisk - リムーバブル
30メディアユーティリティ」のような動作をします。
31
32%prep
33%setup -q
34
35%build
36%configure --disable-static
37make %{?_smp_mflags}
38
39%install
40rm -rf $RPM_BUILD_ROOT
41make install DESTDIR=$RPM_BUILD_ROOT
42
43find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
44
45%find_lang %{name}
46
47
48%clean
49rm -rf $RPM_BUILD_ROOT
50
51
52%post
53touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
54gtk-update-icon-cache %{_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 || :
60fi
61
62
63%files -f %{name}.lang
64%defattr(-,root,root)
65%doc AUTHORS COPYING ChangeLog NEWS README
66%{_libdir}/xfce4/panel/plugins/libmount.so
67%{_datadir}/icons/hicolor/*/apps/*
68%{_datadir}/xfce4/panel/plugins/%{name}.desktop
69
70%changelog
71* Thu Jun 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.4-1
72- initial build for Vine Linux
73
Note: See TracBrowser for help on using the repository browser.