wok view syslinux-modules/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 087d71ec38ce
children 73f36875e5a7
line source
1 # SliTaz package receipt.
3 PACKAGE="syslinux-modules"
4 VERSION="4.06"
5 CATEGORY="system-tools"
6 SHORT_DESC="modules for syslinux"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WANTED="syslinux"
10 WEB_SITE="http://syslinux.zytor.com/"
11 BUILD_DEPENDS="lzma"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 genpkg_rules()
15 {
16 mkdir -p $fs/usr/share/boot
17 for i in $src/com32/*/*.c32 ; do
18 case "$i" in
19 */reboot.c32|*/ifmem.c32|*/vesamenu.c32|*/chain.c32) continue;;
20 esac
21 lzma e $i $fs/usr/share/boot/$(basename $i) 2> /dev/null
22 done
23 for i in $src/modules/*.com ; do
24 case "$i" in
25 */poweroff.com) continue;;
26 esac
27 cp $i $fs/usr/share/boot/$(basename $i) 2> /dev/null
28 done
29 }