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.0 |
14 |
%define release 4 |
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 |
Patch0: smeserver-usbdisksmanager-1.0-locale-2012-06-26.patch |
26 |
Patch1: smeserver-usbdisksmanager-1.0-patch1.patch |
27 |
Patch2: smeserver-usbdisksmanager-1.0-locale-2013-07-14.patch |
28 |
Patch3: smeserver-usbdisksmanager-1.0-locale-2016-03-09.patch |
29 |
|
30 |
|
31 |
%changelog |
32 |
* Wed Mar 09 2016 JP Pialasse <tests@pialasse.com> 1.0-4.sme |
33 |
- apply locale 2016-03-09 patch |
34 |
|
35 |
* Sun Jul 14 2013 JP Pialasse <tests@pialasse.com> 1.0-3.sme |
36 |
- apply locale 2013-07-14 patch |
37 |
* Tue Jun 26 2012 JP PIALASSE tests@pialasse.com 1.0-2.sme |
38 |
- manager interface display fix [SME 6989] |
39 |
- blkid cache removed for manager listing [SME 6990] |
40 |
- Apply local 2012-06-26 |
41 |
* Sat Jun 16 2012 JP PIALASSE tests@pialasse.com 1.0-1.sme |
42 |
- Initial version |
43 |
|
44 |
%description |
45 |
Web interface to manage removable hard drive, and auto mount to a point script |
46 |
|
47 |
%prep |
48 |
%setup |
49 |
%patch0 -p1 |
50 |
%patch1 -p1 |
51 |
%patch2 -p1 |
52 |
%patch3 -p1 |
53 |
|
54 |
|
55 |
%install |
56 |
|
57 |
/bin/rm -rf $RPM_BUILD_ROOT |
58 |
(cd root ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT) |
59 |
/bin/rm -f %{name}-%{version}-filelist |
60 |
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT > %{name}-%{version}-filelist |
61 |
|
62 |
%files -f %{name}-%{version}-filelist |
63 |
%defattr(750,root,root) |
64 |
%{installdir_usbdisks_sh}/usbdisks.sh |
65 |
%defattr(4750,root,admin) |
66 |
%{installdir_usbdisksmanager}/usbdisks |
67 |
|
68 |
%clean |
69 |
rm -rf $RPM_BUILD_ROOT |
70 |
|