forked from pool/os-prober
87 lines
2.3 KiB
RPMSpec
87 lines
2.3 KiB
RPMSpec
|
#
|
||
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||
|
#
|
||
|
|
||
|
Name: os-prober
|
||
|
Version: 1.47
|
||
|
Release: 1
|
||
|
Summary: Probes disks on the system for installed operating systems
|
||
|
|
||
|
License: GPL
|
||
|
Url: http://kitenet.net/~joey/code/os-prober/
|
||
|
Group: System/Boot
|
||
|
Source0: http://ftp.de.debian.org/debian/pool/main/o/os-prober/%{name}_%{version}.tar.gz
|
||
|
# move newns binary outside of os-prober subdirectory, so that debuginfo
|
||
|
# can be automatically generated for it
|
||
|
Patch0: os-prober-newnsdirfix.patch
|
||
|
# PATCH-FIX-OPENSUSE: Fix spelling of SUSE aj@suse.de
|
||
|
Patch1: os-prober-SUSE.patch
|
||
|
|
||
|
Requires: /bin/grep
|
||
|
Requires: /bin/sed
|
||
|
Requires: /sbin/modprobe
|
||
|
Requires: coreutils
|
||
|
Requires: dmraid
|
||
|
Requires: lvm2
|
||
|
Requires: udev
|
||
|
Requires: util-linux
|
||
|
|
||
|
%description
|
||
|
This package detects other OSes available on a system and outputs the results
|
||
|
in a generic machine-readable format. Support for new OSes and Linux
|
||
|
distributions can be added easily.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n %{name}
|
||
|
%patch0 -p1
|
||
|
%patch1 -p1
|
||
|
|
||
|
%build
|
||
|
make %{?_smp_mflags} CFLAGS="%{optflags}"
|
||
|
|
||
|
%install
|
||
|
install -m 0755 -d %{buildroot}%{_bindir}
|
||
|
install -m 0755 -d %{buildroot}%{_localstatedir}/lib/%{name}
|
||
|
|
||
|
install -m 0755 -p os-prober linux-boot-prober %{buildroot}%{_bindir}
|
||
|
install -m 0755 -Dp newns %{buildroot}%{_libexecdir}/newns
|
||
|
install -m 0644 -Dp common.sh %{buildroot}%{_datadir}/%{name}/common.sh
|
||
|
|
||
|
%ifarch m68k
|
||
|
ARCH=m68k
|
||
|
%endif
|
||
|
%ifarch ppc ppc64
|
||
|
ARCH=powerpc
|
||
|
%endif
|
||
|
%ifarch sparc sparc64
|
||
|
ARCH=sparc
|
||
|
%endif
|
||
|
%ifarch %{ix86} x86_64
|
||
|
ARCH=x86
|
||
|
%endif
|
||
|
|
||
|
for probes in os-probes os-probes/mounted os-probes/init \
|
||
|
linux-boot-probes linux-boot-probes/mounted; do
|
||
|
install -m 755 -d %{buildroot}%{_libexecdir}/$probes
|
||
|
cp -a $probes/common/* %{buildroot}%{_libexecdir}/$probes
|
||
|
if [ -e "$probes/$ARCH" ]; then
|
||
|
cp -a $probes/$ARCH/* %{buildroot}%{_libexecdir}/$probes
|
||
|
fi
|
||
|
done
|
||
|
if [ "$ARCH" = x86 ]; then
|
||
|
install -m 755 -p os-probes/mounted/powerpc/20macosx \
|
||
|
%{buildroot}%{_libexecdir}/os-probes/mounted
|
||
|
fi
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root,-)
|
||
|
%doc README TODO debian/copyright debian/changelog
|
||
|
%{_bindir}/*
|
||
|
%{_libexecdir}/linux-boot-probes
|
||
|
%{_libexecdir}/newns
|
||
|
%{_libexecdir}/os-probes
|
||
|
%{_datadir}/%{name}
|
||
|
%{_localstatedir}/lib/%{name}
|
||
|
|
||
|
%changelog
|