1 |
# $Id: smeserver-usbdisksmanager.spec,v 1.3 2013/07/15 00:14:27 unnilennium Exp $ |
2 |
# Authority: unnilennium |
3 |
# Name: Jean-Philippe Pialasse |
4 |
|
5 |
Summary: smeserver-usbdisksmanager |
6 |
%define name smeserver-usbdisksmanager |
7 |
|
8 |
# Variable representing installation directories: |
9 |
%define installdir_usbdisksmanager /etc/e-smith/web/functions |
10 |
%define installdir_usbdisks_sh /usr/sbin |
11 |
|
12 |
Name: %{name} |
13 |
%define version 1.2 |
14 |
%define release 1 |
15 |
Version: %{version} |
16 |
Release: %{release}%{?dist} |
17 |
License: GNU GPL version 2 |
18 |
Group: SMEserver/addon |
19 |
Source: %{name}-%{version}.tgz |
20 |
BuildRoot: /var/tmp/e-smith-buildroot |
21 |
BuildRequires: e-smith-devtools >= 1.13.1-03 |
22 |
BuildArchitectures: noarch |
23 |
Requires: smeserver-release >= 8.0 |
24 |
AutoReqProv: no |
25 |
|
26 |
%changelog |
27 |
* Fri Sep 25 2015 stephane de Labrusse <stephdl@de-labrusse.fr> 1.2-1.sme |
28 |
- Initial release to contribs9 |
29 |
|
30 |
* Sun Jul 14 2013 JP Pialasse <tests@pialasse.com> 1.0-3.sme |
31 |
- apply locale 2013-07-14 patch |
32 |
* Tue Jun 26 2012 JP PIALASSE tests@pialasse.com 1.0-2.sme |
33 |
- manager interface display fix [SME 6989] |
34 |
- blkid cache removed for manager listing [SME 6990] |
35 |
- Apply local 2012-06-26 |
36 |
* Sat Jun 16 2012 JP PIALASSE tests@pialasse.com 1.0-1.sme |
37 |
- Initial version |
38 |
|
39 |
%description |
40 |
Web interface to manage removable hard drive, and auto mount to a point script |
41 |
|
42 |
%prep |
43 |
%setup |
44 |
|
45 |
%install |
46 |
|
47 |
/bin/rm -rf $RPM_BUILD_ROOT |
48 |
(cd root ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT) |
49 |
/bin/rm -f %{name}-%{version}-filelist |
50 |
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT > %{name}-%{version}-filelist |
51 |
|
52 |
%files -f %{name}-%{version}-filelist |
53 |
%defattr(750,root,root) |
54 |
%{installdir_usbdisks_sh}/usbdisks.sh |
55 |
%defattr(4750,root,admin) |
56 |
%{installdir_usbdisksmanager}/usbdisks |
57 |
|
58 |
%clean |
59 |
rm -rf $RPM_BUILD_ROOT |
60 |
|