]> git.pld-linux.org Git - packages/seabios.git/blob - seabios.spec
- noarch (not strictly, as content is binary, but result should not depend on host...
[packages/seabios.git] / seabios.spec
1 Summary:        Open source implementation of a 16-bit x86 BIOS
2 Summary(pl.UTF-8):      Implementacja 16-bitowego BIOS-u x86 o otwartych źródłach
3 Name:           seabios
4 Version:        1.14.0
5 Release:        2
6 License:        LGPL v3
7 Group:          Applications/System
8 Source0:        https://www.seabios.org/downloads/%{name}-%{version}.tar.gz
9 # Source0-md5:  9df3b7de6376850d09161137e7a9b61f
10 URL:            https://www.seabios.org/SeaBIOS
11 BuildRequires:  acpica
12 %ifnarch %{ix86} %{x8664} x32
13 # i386 crosscompiler could be used as well, but we have only x86_64 as more universal
14 BuildRequires:  crossx8664-binutils
15 BuildRequires:  crossx8664-gcc
16 %endif
17 BuildRequires:  python
18 BuildArch:      noarch
19 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21 %description
22 SeaBIOS is an open source implementation of a 16-bit X86 BIOS. SeaBIOS
23 can run in an emulator or it can run natively on X86 hardware with the
24 use of coreboot.
25
26 SeaBIOS is the default BIOS for QEMU, KVM and Xen HVM.
27
28 %description -l pl.UTF-8
29 SeaBIOS to mająca otwarte źródła implementacją 16-bitowego BIOS-u X86.
30 SeaBIOS może działać pod kontrolą emulatora lub natywnie na sprzęcie
31 X86 przy użyciu bootloadera coreboot.
32
33 SeaBIOS to domyślny BIOS dla narzędzi QEMU, KVM i Xen HVM.
34
35 %prep
36 %setup -q
37
38 %build
39 %{__make} \
40         V=1 \
41 %ifnarch %{ix86} %{x8664} x32
42         CROSS_PREFIX=x86_64-pld-linux
43 %endif
44
45 %install
46 rm -rf $RPM_BUILD_ROOT
47 install -d $RPM_BUILD_ROOT%{_datadir}/%{name}
48
49 install out/bios.bin $RPM_BUILD_ROOT%{_datadir}/%{name}/bios.bin
50
51 %clean
52 rm -rf $RPM_BUILD_ROOT
53
54 %files
55 %defattr(644,root,root,755)
56 %doc README docs/{Debugging.md,Mailinglist.md,Memory_Model.md,Releases.md,Runtime_config.md,SeaBIOS.md,SeaVGABIOS.md}
57 %dir %{_datadir}/%{name}
58 %{_datadir}/%{name}/bios.bin
This page took 0.083809 seconds and 3 git commands to generate.