wok annotate linld/receipt @ rev 21566
updated wesnoth again (1.10.3 -> 1.14.7)
author | Hans-G?nter Theisgen |
---|---|
date | Fri May 17 14:20:42 2019 +0100 (2019-05-17) |
parents | 8685ee90f6aa |
children | 642355b9b9fd |
rev | line source |
---|---|
pascal@2330 | 1 # SliTaz package receipt. |
pascal@2330 | 2 |
pascal@2330 | 3 PACKAGE="linld" |
pascal@2330 | 4 VERSION="0.97" |
pascal@2330 | 5 CATEGORY="system-tools" |
pascal@2330 | 6 SHORT_DESC="Boot loader for DOS/Win9x." |
pascal@2330 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15379 | 8 LICENSE="GPL" |
pascal@20453 | 9 SUFFIX="${VERSION/./}" |
pascal@19410 | 10 TARBALL="${PACKAGE}${SUFFIX}devel.tar.bz2" |
pascal@20669 | 11 BASE_SITE="https://busybox.net/~vda/$PACKAGE" |
pascal@2330 | 12 WEB_SITE="$BASE_SITE/README.txt" |
pascal@2330 | 13 WGET_URL="$BASE_SITE/$TARBALL" |
pascal@20458 | 14 EXTRA_TOOL_URL="ftp://ftp.ibiblio.org/pub/micro/pc-stuff/freedos/gnuish/mawk122x.zip" |
pascal@20458 | 15 EXTRA_TOOL="$(basename $EXTRA_TOOL_URL)" |
pascal@20458 | 16 EXTRA_SOURCE_FILES="$EXTRA_TOOL" |
pascal@2330 | 17 |
pascal@19410 | 18 BUILD_DEPENDS="dosbox upx" |
pascal@17446 | 19 |
pascal@2330 | 20 # Rules to configure and make the package. |
pascal@2330 | 21 compile_rules() |
pascal@2330 | 22 { |
pascal@20458 | 23 [ -s $SRC/$EXTRA_TOOL ] || |
pascal@20458 | 24 busybox wget -O $SRC/$EXTRA_TOOL $EXTRA_TOOL_URL |
pascal@2330 | 25 mv DIST $src 2> /dev/null |
pascal@2330 | 26 cd $src |
pascal@20459 | 27 unzip $SRC/$EXTRA_TOOL > /dev/null |
pascal@20427 | 28 rm LINLD$SUFFIX/CRTL.CPP LINLD$SUFFIX/INT15_88.ASM |
pascal@19515 | 29 cp $stuff/src/* LINLD$SUFFIX/ |
pascal@19515 | 30 cp -a LINLD$SUFFIX TAZBOOT |
pascal@19515 | 31 sed -i 's/-3/-DNO386/' TAZBOOT/BCCOPT.OPT |
pascal@17446 | 32 unix2dos > MAKE.BAT <<EOT |
pascal@17446 | 33 d: |
pascal@19410 | 34 cd linld$SUFFIX |
pascal@19515 | 35 $(cat LINLD$SUFFIX/!COMPILE.BAT) |
pascal@19515 | 36 cd .. |
pascal@19515 | 37 cd tazboot |
pascal@19515 | 38 $(cat TAZBOOT/!COMPILEX.BAT) |
pascal@17446 | 39 EOT |
pascal@19736 | 40 SDL_VIDEODRIVER=dummy dosbox MAKE.BAT -exit -c "mount D $src" \ |
pascal@19736 | 41 2>&1 | grep -v 'ALSA lib' |
pascal@20550 | 42 grep '^Error[ :]' */LNK.LOG */CPP.LOG && return 1 |
pascal@20550 | 43 grep '*Error*' */*.LST && return 1 |
pascal@21363 | 44 grep '^Warning[ :]' */LNK.LOG */CPP.LOG |
pascal@21363 | 45 grep '*Warning*' */*.LST |
pascal@19410 | 46 cp LINLD$SUFFIX/LINLD.COM linld.com |
pascal@19515 | 47 cp TAZBOOT/TAZBOOT.COM tazboot.com |
pascal@19414 | 48 objdump -D -b binary -mi386 -Maddr16,data16 --adjust-vma=0x100 \ |
pascal@19414 | 49 linld.com > linld.lst |
pascal@20794 | 50 [ $(stat -c %s linld.com) -gt 4096 ] && linld=linld.com || linld= |
pascal@20794 | 51 for f in $linld tazboot.com ; do |
pascal@20457 | 52 cp $f tmp.com |
pascal@20457 | 53 for i in $(seq 1 9); do |
pascal@20457 | 54 upx -$i --8086 tmp.com |
pascal@20457 | 55 [ $(stat -c "%s" $f) -gt $(stat -c "%s" tmp.com) ] && |
pascal@20457 | 56 cp tmp.com $f |
pascal@20457 | 57 upx -d tmp.com |
pascal@20457 | 58 done > /dev/null 2>&1 |
pascal@20457 | 59 rm tmp.com |
pascal@20457 | 60 done |
pascal@20794 | 61 upx -l $linld tazboot.com |
pascal@18230 | 62 cc -o tobzimage.o -Wa,-algms=tobzimage.lst -c $stuff/tobzimage.S |
pascal@18230 | 63 objcopy -O binary tobzimage.o tobzimage.bin |
pascal@18230 | 64 cp $stuff/tobzimage . |
pascal@18230 | 65 ./tobzimage --build |
pascal@2330 | 66 } |
pascal@2330 | 67 |
pascal@2330 | 68 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2330 | 69 genpkg_rules() |
pascal@2330 | 70 { |
pascal@19494 | 71 mkdir -p $fs/usr/share/boot $fs/usr/bin $install/usr/share/doc |
pascal@19410 | 72 cp $src/linld.com $stuff/linld.txt $fs/usr/share/boot/ |
pascal@19494 | 73 cp $stuff/linld.txt $install/usr/share/doc |
pascal@19465 | 74 #cp $src/tobzimage $fs/usr/bin |
pascal@2330 | 75 } |