wok-current diff gpxe/receipt @ rev 955
Add gPXE
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Jun 27 20:38:59 2008 +0000 (2008-06-27) |
parents | |
children | 7ce662304f43 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gpxe/receipt Fri Jun 27 20:38:59 2008 +0000 1.3 @@ -0,0 +1,27 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="gpxe" 1.7 +VERSION="0.9.3" 1.8 +CATEGORY="system-tools" 1.9 +SHORT_DESC="Ethernet bootloader." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.12 +WEB_SITE="http://www.etherboot.org/" 1.13 +WGET_URL="http://kernel.org/pub/software/utils/boot/$PACKAGE/$TARBALL" 1.14 + 1.15 +# Rules to configure and make the package. 1.16 +compile_rules() 1.17 +{ 1.18 + cd $src/src 1.19 + for i in prefix.u default_boot.u; do 1.20 + patch -p2 < ../../stuff/$i || return 1 1.21 + done 1.22 + make bin/gpxe.lkrn bin/undionly.kpxe 1.23 +} 1.24 + 1.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.26 +genpkg_rules() 1.27 +{ 1.28 + mkdir -p $fs/usr/share/boot 1.29 + cp $src/src/bin/gpxe.lkrn $fs/usr/share/boot/gpxe 1.30 +}