source: projects/specs/trunk/t/thunar-volman/thunar-volman-vl.spec @ 9399

Revision 9399, 2.5 KB checked in by inagaki, 9 years ago (diff)

2015-03-01 Ryoichi INAGAKI <ryo1@…>

  • Xfce: updated to 4.12
  • libxfce4util410: new for compatibility


Line 
1%global minorversion 0.8
2
3Name:           thunar-volman
4Summary:        Thunar extension for volume management
5Summary(ja):    ストレージ管理のための Thunar 拡張
6Version:        0.8.1
7Release:        1%{?_dist_release}
8
9Group:          User Interface/Desktops
10License:        LGPLv2+
11URL:            http://goodies.xfce.org/projects/thunar-plugins/thunar-volman
12
13Source0:        http://archive.xfce.org/src/xfce/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2
14
15BuildRoot:      %{_tmppath}/%{name}-%{version}-root
16
17BuildRequires:  Thunar-devel >= 1.2.0
18BuildRequires:  libexo-devel >= 0.10.0
19BuildRequires:  glib2-devel >= 2.30.0
20BuildRequires:  gtk2-devel >= 2.24.0
21BuildRequires:  eudev-libgudev1-devel
22BuildRequires:  libnotify-devel >= 0.4.0
23BuildRequires:  libxfce4ui-devel >= 4.10.0
24BuildRequires:  libxfce4util-devel >= 4.10.0
25BuildRequires:  xfconf-devel >= 4.10.0
26
27Vendor:         Project Vine
28Distribution:   Vine Linux
29
30%description
31thunar-volman is an extension for the Thunar File Manager, which enables
32automatic management of removable drives and media. For example, if
33thunar-volman is installed and configured properly, and you plug in your
34digitcal camera, it will automatically spawn your preferred photo application
35and import the new pictures from your camera.
36
37
38%prep
39%setup -q
40
41%build
42%configure --disable-static
43make %{?_smp_mflags}
44
45
46%install
47rm -rf $RPM_BUILD_ROOT
48make install DESTDIR=$RPM_BUILD_ROOT
49
50%find_lang %{name}
51
52
53%clean
54rm -rf $RPM_BUILD_ROOT
55
56
57%post
58/sbin/ldconfig
59touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
60gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
61update-desktop-database %{_datadir}/applications &> /dev/null || :
62
63%postun
64/sbin/ldconfig
65if [ $1 -eq 0 ]; then
66    touch --no-create %{_datadir}/icons/hicolor &> /dev/null || :
67    gtk-update-icon-cache %{_datadir}/icons/hicolor &> /dev/null || :
68fi
69update-desktop-database %{_datadir}/applications &> /dev/null || :
70
71
72%files -f %{name}.lang
73%defattr(-,root,root,-)
74%doc AUTHORS ChangeLog NEWS README
75%{_bindir}/thunar-volman
76%{_bindir}/thunar-volman-settings
77%{_datadir}/applications/thunar-volman-settings.desktop
78%{_datadir}/icons/hicolor/*/apps/*
79
80
81%changelog
82* Sun Mar  1 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.8.1-1
83- new upstream relase
84- added BR: libnotify-devel
85- added Japanese summary
86
87* Sun Dec 29 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.8.0-2
88- rebuild with VineSeed environment
89
90* Thu Jun 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.8.0-1
91- initial build for Vine Linux
92
Note: See TracBrowser for help on using the repository browser.