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

Revision 9173, 2.0 KB checked in by inagaki, 9 years ago (diff)

2014-12-21 Ryoichi INAGAKI <ryo1@…>

  • xfce4 plugins: updated
  • xfce4-panel, xfce4-power-manager, xfdesktop: updated


Line 
1Name:           xfce4-mount-plugin
2Summary:        Mount/unmount plugin for the Xfce4 panel
3Summary(ja):    Xfce パネル用 マウント/アンマウントプラグイン
4Version:        0.6.7
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
14BuildRequires:  libxfce4util-devel >= 4.8.0
15BuildRequires:  libxfce4ui-devel >= 4.8.0
16BuildRequires:  xfce4-panel-devel >= 4.8.0
17
18Vendor:         Project Vine
19Distribution:   Vine Linux
20Packager:       Takemikaduchi
21
22
23%description
24This little plugin behaves like the "kwikdisk - removable media utility" shipped with KDE.
25
26%description -l ja
27この小さなプラグインは KDE に同梱されている「kwikdisk - リムーバブルメディアユーティリティ」のような動作をします。
28
29%prep
30%setup -q
31
32%build
33%configure --disable-static
34make %{?_smp_mflags}
35
36%install
37rm -rf $RPM_BUILD_ROOT
38make install DESTDIR=$RPM_BUILD_ROOT
39
40find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
41
42%find_lang %{name}
43
44
45%clean
46rm -rf $RPM_BUILD_ROOT
47
48
49%post
50touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
51gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
52
53%postun
54if [ $1 -eq 0 ]; then
55    touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
56    gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
57fi
58
59
60%files -f %{name}.lang
61%defattr(-,root,root)
62%doc AUTHORS COPYING ChangeLog NEWS README
63%{_libdir}/xfce4/panel/plugins/libmount.so
64%{_datadir}/icons/hicolor/*/apps/*
65%{_datadir}/xfce4/panel/plugins/%{name}.desktop
66
67%changelog
68* Sun Dec 21 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 0.6.7-1
69- new upstream release
70
71* Sun Dec 29 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.4-2
72- rebuild with VineSeed environment
73
74* Thu Jun 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.6.4-1
75- initial build for Vine Linux
76
Note: See TracBrowser for help on using the repository browser.