wok-current view syslinux-modules/receipt @ rev 25786
Bump gvfs to fix issue with open files on android device, patch udev to fix mtp issue on pcmanfm
| author | Stanislas Leduc <shann@slitaz.org> |
|---|---|
| date | Tue Jul 29 18:05:13 2025 +0000 (3 months ago) |
| parents | 9600878fc758 |
| children |
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="https://www.syslinux.org/"
11 BUILD_DEPENDS="lzma"
13 HOST_ARCH="i486 x86_64"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 mkdir -p $fs/usr/share/boot
19 for i in $src/com32/*/*.c32 ; do
20 case "$i" in
21 */reboot.c32|*/ifmem.c32|*/vesamenu.c32|*/chain.c32) continue;;
22 esac
23 lzma e $i $fs/usr/share/boot/$(basename $i) 2> /dev/null
24 done
25 for i in $src/modules/*.com ; do
26 case "$i" in
27 */poweroff.com) continue;;
28 esac
29 cp $i $fs/usr/share/boot/$(basename $i) 2> /dev/null
30 done
31 }