wok-next view etherboot/receipt @ rev 21131

Update fdupes (1.6.1), jdupes (1.11.1), paper-icon-theme (1.5.0)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jan 19 14:59:09 2019 +0200 (2019-01-19)
parents d6378d455338
children c4532c52f3a2
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 WEB_SITE="http://etherboot.org/wiki/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="perl gcc49"
16 compile_rules() {
17 cd $src/src
18 make CC=gcc-49 bin/etherboot-net.bzImage
19 }
21 genpkg_rules() {
22 mkdir -p $fs/usr/share/boot
23 cp $src/src/bin/etherboot-net.bzImage $fs/usr/share/boot/etherboot
24 }
26 post_install() {
27 [ -n "$quiet" ] || cat <<EOT
29 .------------------------------------------.
30 | You can create pxe/nbi boot floppy with: |
31 | |
32 | # cp /usr/share/boot/etherboot /dev/fd0 |
33 '------------------------------------------'
34 EOT
35 }