| 1 | #
|
|---|
| 2 | # $Id: mindi.spec 588 2006-05-29 09:47:20Z bcornec $
|
|---|
| 3 | #
|
|---|
| 4 | %define mrel RRR
|
|---|
| 5 | %define tag TTT
|
|---|
| 6 |
|
|---|
| 7 | Summary: Mindi creates emergency boot disks/CDs using your kernel, tools and modules
|
|---|
| 8 | Name: mindi
|
|---|
| 9 | Version: VVV
|
|---|
| 10 | Release: %mrel
|
|---|
| 11 | License: GPL
|
|---|
| 12 | Group: GRP
|
|---|
| 13 | Url: http://www.mondorescue.org
|
|---|
| 14 | Source: SSS
|
|---|
| 15 | BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -u -n)
|
|---|
| 16 | Requires: bzip2 >= 0.9, mkisofs, ncurses, binutils, gawk, dosfstools DDD
|
|---|
| 17 | # Not on all systems
|
|---|
| 18 | #Conflicts: bonnie++
|
|---|
| 19 |
|
|---|
| 20 | %description
|
|---|
| 21 | Mindi takes your kernel, modules, tools and libraries, and puts them on N
|
|---|
| 22 | bootable disks (or 1 bootable CD image). You may then boot from the disks/CD
|
|---|
| 23 | and do system maintenance - e.g. format partitions, backup/restore data,
|
|---|
| 24 | verify packages, etc.
|
|---|
| 25 |
|
|---|
| 26 | %prep
|
|---|
| 27 | %setup -n %name-%{version}-%{tag}
|
|---|
| 28 |
|
|---|
| 29 | %build
|
|---|
| 30 | %ifarch ia64
|
|---|
| 31 | %{__make} -f Makefile.parted2fdisk clean
|
|---|
| 32 | %{__make} -f Makefile.parted2fdisk
|
|---|
| 33 | %endif
|
|---|
| 34 |
|
|---|
| 35 | %install
|
|---|
| 36 | %{__rm} -rf $RPM_BUILD_ROOT
|
|---|
| 37 | export DONT_RELINK=1
|
|---|
| 38 |
|
|---|
| 39 | export PREFIX=${RPM_BUILD_ROOT}%{_exec_prefix}
|
|---|
| 40 | export CONFDIR=${RPM_BUILD_ROOT}%{_sysconfdir}
|
|---|
| 41 | export RPMBUILDMINDI="true"
|
|---|
| 42 |
|
|---|
| 43 | ./install.sh
|
|---|
| 44 |
|
|---|
| 45 | %clean
|
|---|
| 46 | %{__rm} -rf $RPM_BUILD_ROOT
|
|---|
| 47 |
|
|---|
| 48 | %post
|
|---|
| 49 | if [ -f /usr/local/sbin/mindi ]; then
|
|---|
| 50 | echo "WARNING: /usr/local/sbin/mindi exists. You should probably remove your manual mindi installation !"
|
|---|
| 51 | fi
|
|---|
| 52 |
|
|---|
| 53 | %files
|
|---|
| 54 | %config(noreplace) %{_sysconfdir}/mindi
|
|---|
| 55 | %config(noreplace) %{_sysconfdir}/mindi/deplist.txt
|
|---|
| 56 | %config(noreplace) %{_sysconfdir}/mindi/deplist.d/*
|
|---|
| 57 | %config(noreplace) %{_sysconfdir}/mindi/mindi.conf
|
|---|
| 58 | %doc ChangeLog INSTALL COPYING README TODO README.ia64 README.pxe README.busybox svn.log
|
|---|
| 59 | %{_mandir}/man8/*
|
|---|
| 60 | %{_libdir}/mindi
|
|---|
| 61 | %{_sysconfdir}/mindi/mindi.conf
|
|---|
| 62 | %{_sbindir}/*
|
|---|
| 63 |
|
|---|
| 64 | %changelog
|
|---|