wok annotate grub4dos/receipt @ rev 24331
updated attr and attr-dev (2.4.48 -> 2.5.1)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Jan 27 17:14:58 2022 +0100 (2022-01-27) |
parents | a27bbec045be |
children | 932cd974e081 |
rev | line source |
---|---|
pascal@1726 | 1 # SliTaz package receipt. |
pascal@1726 | 2 |
pascal@1726 | 3 PACKAGE="grub4dos" |
pascal@4396 | 4 VERSION="0.4.4" |
pascal@1726 | 5 CATEGORY="system-tools" |
pascal@1726 | 6 SHORT_DESC="Some enhancments of grub boot loader." |
pascal@1726 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15589 | 8 LICENSE="GPL2" |
pascal@6240 | 9 TARBALL="$PACKAGE-$VERSION-src.zip" |
pascal@1726 | 10 WEB_SITE="http://grub4dos.sourceforge.net/" |
pascal@1726 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pankso@10434 | 12 |
pascal@23892 | 13 BUILD_DEPENDS="lzma gcc3 binutils" |
pascal@1726 | 14 |
pascal@6240 | 15 # Rules to configure and make the package. |
pascal@6240 | 16 compile_rules() |
pascal@6240 | 17 { |
slaxemulator@9700 | 18 for i in $stuff/*.diff ; do |
pascal@7806 | 19 [ -f $(basename $i) ] && continue |
pascal@7806 | 20 patch -p1 < $i |
pascal@7806 | 21 touch $(basename $i) |
pascal@7806 | 22 done |
pascal@12235 | 23 sed -i 's/\[ .grub-probe.*\]/mount | grep $grubdir | grep -q xfs/' \ |
pascal@12235 | 24 util/grub-install.in |
pascal@23895 | 25 sed -i 's|-O binary conftest|--only-section=.text &|' acinclude.m4 configure |
pascal@23894 | 26 sed -i 's|-O binary |&-R .note -R .comment -R .note.gnu.build-id |' stage?/Makefile* |
pascal@12235 | 27 sh ./configure CC=gcc-3 \ |
pankso@10434 | 28 --enable-preset-menu=$stuff/menu.lst \ |
pankso@10434 | 29 --without-curses \ |
pascal@6240 | 30 $CONFIGURE_ARGS && |
pascal@23896 | 31 make -j 1 && make -j 1 install |
pascal@6240 | 32 } |
pascal@6240 | 33 |
pascal@1726 | 34 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1726 | 35 genpkg_rules() |
pascal@1726 | 36 { |
pankso@9497 | 37 mkdir -p $fs/usr/share/boot \ |
pankso@10434 | 38 $fs/usr/bin |
pankso@10434 | 39 |
pascal@15589 | 40 lzma e $install/usr/lib/grub/*/grub.exe $fs/usr/share/boot/grub.exe.lzma |
pascal@15589 | 41 lzma e $install/usr/lib/grub/*/grldr $fs/usr/share/boot/grldr.lzma |
pankso@10434 | 42 |
pascal@15589 | 43 cp $install/usr/lib/grub/*/bootlace.com $fs/usr/bin/bootlace |
pascal@1729 | 44 chmod +x $fs/usr/bin/bootlace |
pascal@6240 | 45 # Skip hmload.com badgrub.exe grldr.mbr |
pascal@1726 | 46 } |