wok view etherboot/receipt @ rev 16348

Up: slitaz-base-files (5.5)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 13 01:42:13 2014 +0200 (2014-04-13)
parents d1768332cee0
children beda06c66d60
line source
1 # SliTaz package receipt.
3 PACKAGE="etherboot"
4 VERSION="5.4.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="Ethernet bootloader for PXE and NBI images."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.etherboot.org/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 BUILD_DEPENDS="perl"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src/src
19 while read file; do
20 [ -f done.$file ] && continue
21 patch -p2 < $stuff/$file
22 touch done.$file
23 done <<EOT
24 etherboot-net.u
25 etherboot-prefix.u
26 EOT
27 make bin/etherboot-net.bzImage
28 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share/boot
35 cp $src/src/bin/etherboot-net.bzImage $fs/usr/share/boot/etherboot
36 }
38 # Pre and post install commands for Tazpkg.
39 post_install()
40 {
41 echo "----"
42 echo "You can create pxe/nbi boot floppy with:"
43 echo "# cp /usr/share/boot/etherboot /dev/fd0"
44 echo "----"
45 }