1 |
# $Id: smeserver-usbdisksmanager-0.2.spec,v 1.4 2008/04/21 11:39:06 dungog 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 0.2 |
14 |
%define release 3 |
15 |
Version: %{version} |
16 |
Release: %{release}%{?dist} |
17 |
License: GNU GPL version 2 |
18 |
Group: SMEserver/addon |
19 |
Source: %{name}-%{version}.tgz |
20 |
Patch0: smeserver-usbdisksmanager-0.2-removehelp.patch |
21 |
Patch1: smeserver-usbdisksmanager-0.2-locale-2008-04-21.patch |
22 |
BuildRoot: /var/tmp/e-smith-buildroot |
23 |
BuildRequires: e-smith-devtools >= 1.13.1-03 |
24 |
BuildArchitectures: noarch |
25 |
|
26 |
Requires: smeserver-release >= 7.0 |
27 |
AutoReqProv: no |
28 |
|
29 |
%changelog |
30 |
* Mon Apr 21 2008 Stephen Noble <support@dungog.net> 0.2-3 |
31 |
- smeserver-usbdisksmanager-0.2-locale-2008-04-21.patch |
32 |
|
33 |
* Fri Apr 18 2008 Stephen Noble <support@dungog.net> 0.2-2 |
34 |
- remove help to wiki to simplify translations [SME 4208] |
35 |
|
36 |
* Mon Apr 9 2007 JP PIALASSE tests@pialasse.com 0.2-0.5 |
37 |
- how to format your hard drive |
38 |
- auto mount to media folder |
39 |
- mount options for mount to can be set |
40 |
- new Help section |
41 |
|
42 |
%description |
43 |
Web interface to manage removable hard drive, and auto mount to a point script |
44 |
|
45 |
%prep |
46 |
%setup |
47 |
%patch0 -p1 |
48 |
%patch1 -p1 |
49 |
|
50 |
%install |
51 |
|
52 |
/bin/rm -rf $RPM_BUILD_ROOT |
53 |
(cd root ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT) |
54 |
/bin/rm -f %{name}-%{version}-filelist |
55 |
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT > %{name}-%{version}-filelist |
56 |
|
57 |
%files -f %{name}-%{version}-filelist |
58 |
%defattr(750,root,root) |
59 |
%{installdir_usbdisks_sh}/usbdisks.sh |
60 |
%defattr(4750,root,admin) |
61 |
%{installdir_usbdisksmanager}/usbdisks |
62 |
|
63 |
%clean |
64 |
rm -rf $RPM_BUILD_ROOT |
65 |
|