2
0
mirror of https://github.com/xcat2/xcat-dep.git synced 2024-11-22 09:31:48 +00:00
xcat-dep/grub2-xcat/grub2-xcat.spec
immarvin 2d595a0488 grub2-xcat build staff
Former-commit-id: 3fc7c33336756c6bff883e992021db8ae523a43f
2014-04-04 01:09:51 -07:00

74 lines
1.3 KiB
RPMSpec

Summary: grub2 resources generated by grub2-mknetdir
Name: grub2-xcat
Version: 1.0
#Release: snap%(date +"%Y%m%d%H%M")
Release: 1
License: EPL
Group: Applications/System
Vendor: IBM Corp.
Packager: IBM Corp.
#Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}}
Prefix: /tftpboot/boot/grub2
BuildRoot: /var/tmp/%{name}-root
BuildArch: noarch
Source1: grub2-res.tar.gz
Provides: grub2-xcat
Requires:/bin/sh
%description
grub2-xcat provides some grub2 resources generated by grub2-mknetdir,including grub2 modules and grub2 image.
%define _binaries_in_noarch_packages_terminate_build 0
%prep
#cp ./grub2-res.tar.gz /root/rpmbuild/SOURCES/
#%ifos linux
#tar zxf %{SOURCE1}
#%else
#rm -rf tftpboot
#cp %{SOURCE1} /opt/freeware/src/packages/BUILD
#gunzip -f grub2-res.tar.gz
#tar -xf grub2-res.tar
#%endif
%build
%pre
%install
mkdir -p $RPM_BUILD_ROOT/%{prefix}/
cd $RPM_BUILD_ROOT/%{prefix}/
%ifos linux
tar zxf %{SOURCE1}
%else
cp %{SOURCE1} $RPM_BUILD_ROOT/%{prefix}/
gunzip -f grub2-res.tar.gz
tar -xf grub2-res.tar
%endif
%post
ln -s -f %{prefix}/powerpc-ieee1275/core.elf %{prefix}/grub2.ppc
exit 0
%clean
%files
#%{prefix}
# one for sles, one for rhel. yes, it's ugly...
%{prefix}/powerpc-ieee1275/
%defattr(-,root,root)
%postun
if [ "$1" = "0" ]; then
rm %{prefix}/grub2.ppc
fi
true