wok view syslinux-modules/receipt @ rev 22991

updated l3afpad (0.8.18.1.10 -> 0.8.18.1.11)
author Hans-G?nter Theisgen
date Sun Mar 01 17:39:44 2020 +0100 (2020-03-01)
parents eb4d1b707754
children b57d2cbc7c42
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) 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 }