wok view memtest/receipt @ rev 25504

Update some web_site / wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 05 09:28:51 2023 +0000 (19 months ago)
parents 32f22d8fdc89
children c9972dbaa043
line source
1 # SliTaz package receipt.
3 PACKAGE="memtest"
4 VERSION="5.01"
5 CATEGORY="base-system"
6 SHORT_DESC="Memory failures detection tool."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="memtest86+"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="https://www.memtest.org/"
12 WGET_URL="${WEB_SITE}download/archives/$VERSION/$TARBALL"
14 BUILD_DEPENDS="xz lz4 lzsa"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - $WEB_SITE 2>/dev/null | \
20 sed '/tar.gz"/!d;s|.*memtest86.-||;s|.tar.*||;q'
21 }
23 asm()
24 {
25 cc -o $1.o -Wa,-a=$1.lst -c $1.S
26 objcopy --only-section=.text -O binary $1.o $1.bin
27 }
29 tune_lzma()
30 {
31 file=$1
32 shift
33 for i in lzma lz4x2 lzsa1x2 lzsa2x2 ; do
34 cp $stuff/*.S $stuff/pack .
35 sed "s/VERSION/$VERSION/;s|lzma1=|&nice=${1:-64},|" -i pack
36 while [ -n "$2" ]; do
37 sed "s|^#define PROP_$2 .*|#define PROP_$2 $3|" -i unlzma.S
38 shift 2
39 done
40 sed -i "s|uncompress|un${i%x2}|" unpack.S
41 asm bootloader
42 asm unpack
43 cp pack pack.bak
44 ./pack --build bootloader.bin unpack.bin
45 PACKER=${i%x2} ./pack $file $file.${i%x2}
46 if [ $(stat -c %s $file.${i%x2}) -ge $((0x101F0)) ]; then
47 rm $file.${i%x2}
48 cp pack.bak pack
49 sed -e "s|^#define FLAT16.*// lzma case|#define FLAT16 0 // ${i%x2}|" -i unpack.S
50 asm unpack
51 ./pack --build bootloader.bin unpack.bin
52 PACKER=${i%x2} ./pack $file $file.${i%x2}
53 fi
54 mv unpack.lst unpack.lst.${i%x2}
55 if [ "${i#*x}" = "2" ]; then
56 cp pack.bak pack
57 sed -e "s|^#define DOUBLE_PACKED|#define DOUBLE_PACKED 1 // $i|" -i unpack.S
58 asm unpack
59 ./pack --build bootloader.bin unpack.bin
60 PACKER=${i%x2} ./pack $file $file.$i
61 mv unpack.lst unpack.lst.$i
62 fi
63 done
64 }
66 # Rules to configure and make the package.
67 compile_rules()
68 {
69 # binutils 2.37 support
70 sed -i 's|\t}|&\n\t/DISCARD/ : { *(*) }|' memtest.bin.lds
72 ls $stuff/memtest*-$VERSION-*.patch &&
73 for i in $stuff/memtest*-$VERSION-*.patch ; do
74 patch -p1 < $i
75 done
76 make
77 mv memtest.bin memtest.bin.console
78 tune_lzma memtest.bin.console 218,mf=bt2 LC 2
79 sed -i -e 's/SERIAL_CONSOLE_DEFAULT 0/SERIAL_CONSOLE_DEFAULT 1/' \
80 -e 's/SERIAL_BAUD_RATE 9600/SERIAL_BAUD_RATE 115200/' config.h
81 make clean
82 make
83 mv memtest.bin memtest.bin.serial
84 tune_lzma memtest.bin.serial 179,mf=bt3 LC 2
85 cp memtest.bin.serial.lzma memtest.packed-115200
86 }
89 # Rules to gen a SliTaz package suitable for Tazpkg.
90 genpkg_rules()
91 {
92 mkdir -p $fs/boot $install/usr/share/doc
93 cp $src/README* $install/usr/share/doc
94 cp $src/FAQ $install/usr/share/doc
95 cp $src/memtest.bin.console.lzma $fs/boot/memtest.exe
96 }
98 # Pre and post install commands for Tazpkg.
99 post_install()
100 {
101 [ -s $1/boot/isolinux/isolinux.cfg ] &&
102 ! grep -qs 'Check memory' $1/boot/isolinux/isolinux.cfg && sed -i \
103 's|LABEL md5|LABEL memtest mem ram\
104 MENU LABEL Check memory\
105 KERNEL /boot/memtest.exe\
106 \n&|' $1/boot/isolinux/isolinux.cfg
107 true
108 }