]> git.pld-linux.org Git - packages/bcwipe.git/blob - bcwipe.spec
- init
[packages/bcwipe.git] / bcwipe.spec
1 Summary:        Securely erase data from magnetic and solid-state memory
2 Summary(pl):    Bezpieczne usuwanie danych z pamiêci magnetycznych
3 Name:           BCWipe
4 Version:        1.5
5 Release:        0.1
6 License:        See LICENSE
7 Group:          Utilities/System
8 Source:         http://www.jetico.com/linux/BCWipe-%{version}-3.tar.gz
9 URL:            http://www.jetico.com/
10 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12 %description
13 Securely erase data from magnetic and solid-state memory.
14
15 %description -l pl
16 Bezpieczne usuwanie danych z pamiêci magnetycznych.
17
18 %prep
19 %setup -n bcwipe
20
21 %build
22 make 
23
24 %install
25         install -d -m 755 $RPM_BUILD_ROOT/usr/bin
26         install -d -m 755 $RPM_BUILD_ROOT/usr/man/man1
27         install -d -m 755 $RPM_BUILD_ROOT/usr/share/man/man1
28         make install root=$RPM_BUILD_ROOT
29
30 %__os_install_post
31 # build directory and file lists
32 #find $RPM_BUILD_ROOT -type d | sed -e "s#^$RPM_BUILD_ROOT#%attr(-, root, root) %dir #g" > rpm-files
33   
34 find $RPM_BUILD_ROOT -type f | sed -e "s#^$RPM_BUILD_ROOT#%attr(-, root, root) #g" > rpm-files
35 find $RPM_BUILD_ROOT -type l | sed -e "s#^$RPM_BUILD_ROOT#%attr(-, root, root) #g" >> rpm-files
36 find $RPM_BUILD_ROOT -type b | sed -e "s#^$RPM_BUILD_ROOT#%attr(-, root, root) #g" >> rpm-files
37
38 %clean
39 rm -rf $RPM_BUILD_ROOT
40
41 %files -f rpm-files
42
43 %doc LICENSE
This page took 0.084763 seconds and 4 git commands to generate.