Ugly hacks to make package noarch and available for arch that cannot build
it.
This commit is contained in:
parent
41145fb035
commit
d6248aaff7
35
seabios.spec
35
seabios.spec
@ -1,6 +1,6 @@
|
|||||||
Name: seabios
|
Name: seabios
|
||||||
Version: 0.5.1
|
Version: 0.5.1
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Open-source legacy BIOS implementation
|
Summary: Open-source legacy BIOS implementation
|
||||||
|
|
||||||
Group: Applications/Emulators
|
Group: Applications/Emulators
|
||||||
@ -17,11 +17,27 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|||||||
BuildRequires: python
|
BuildRequires: python
|
||||||
ExclusiveArch: %{ix86} x86_64
|
ExclusiveArch: %{ix86} x86_64
|
||||||
|
|
||||||
|
Requires: %{name}-bin = %{version}-%{release}
|
||||||
|
|
||||||
|
# Seabios is noarch, but required on architectures which cannot build it.
|
||||||
|
# Disable debuginfo because it is of no use to us.
|
||||||
|
%global debug_package %{nil}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
SeaBIOS is an open-source legacy BIOS implementation which can be used as
|
SeaBIOS is an open-source legacy BIOS implementation which can be used as
|
||||||
a coreboot payload. It implements the standard BIOS calling interfaces
|
a coreboot payload. It implements the standard BIOS calling interfaces
|
||||||
that a typical x86 proprietary BIOS implements.
|
that a typical x86 proprietary BIOS implements.
|
||||||
|
|
||||||
|
%ifarch %{ix86} x86_64
|
||||||
|
%package bin
|
||||||
|
Summary: Seabios for x86
|
||||||
|
Buildarch: noarch
|
||||||
|
|
||||||
|
%description bin
|
||||||
|
SeaBIOS is an open-source legacy BIOS implementation which can be used as
|
||||||
|
a coreboot payload. It implements the standard BIOS calling interfaces
|
||||||
|
that a typical x86 proprietary BIOS implements.
|
||||||
|
%endif
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
@ -34,13 +50,18 @@ sed -i 's,VERSION=%{version}.*,VERSION=%{version},g' Makefile
|
|||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
%ifarch %{ix86} x86_64
|
||||||
|
export CFLAGS="$RPM_OPT_FLAGS"
|
||||||
make
|
make
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
mkdir -p $RPM_BUILD_ROOT%{_datadir}/seabios
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/seabios
|
||||||
|
%ifarch %{ix86} x86_64
|
||||||
install -m 0644 out/bios.bin $RPM_BUILD_ROOT%{_datadir}/seabios
|
install -m 0644 out/bios.bin $RPM_BUILD_ROOT%{_datadir}/seabios
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
@ -49,13 +70,21 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%dir %{_datadir}/seabios/
|
|
||||||
%doc COPYING COPYING.LESSER README TODO
|
%doc COPYING COPYING.LESSER README TODO
|
||||||
%{_datadir}/seabios/bios.bin
|
|
||||||
|
|
||||||
|
%ifarch %{ix86} x86_64
|
||||||
|
%files bin
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%dir %{_datadir}/seabios/
|
||||||
|
%{_datadir}/seabios/bios.bin
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Apr 20 2010 Justin M. Forbes <jforbes@redhat.com> 0.5.1-2
|
||||||
|
- Ugly hacks to make package noarch and available for arch that cannot build it.
|
||||||
|
- Disable useless debuginfo
|
||||||
|
|
||||||
* Wed Mar 03 2010 Justin M. Forbes <jforbes@redhat.com> 0.5.1-1
|
* Wed Mar 03 2010 Justin M. Forbes <jforbes@redhat.com> 0.5.1-1
|
||||||
- Update to 0.5.1 stable release
|
- Update to 0.5.1 stable release
|
||||||
- Pick up patches required for current qemu
|
- Pick up patches required for current qemu
|
||||||
|
Loading…
Reference in New Issue
Block a user