wok view memtest/receipt @ rev 25539

Up perl-test-compile (3.1.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 09 12:11:13 2023 +0000 (14 months ago)
parents 000946205748
children 1bbf846a10de
line source
1 # SliTaz package receipt.
3 PACKAGE="memtest"
4 VERSION="6.10"
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="https://github.com/memtest86plus/memtest86plus/archive/refs/tags/v$VERSION.tar.gz"
14 BUILD_DEPENDS="xz lz4 lzsa gcc83"
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 sed -i 's|64, MT_VERSION "." GIT_HASH|65, MT_VERSION ".SliTaz"|;s|"\.x32"|".386"|' app/display.c
70 sed 's|gcc|gcc-83|;s|march=i586|march=i486|' -i build32/Makefile
71 patch -p0 < $stuff/memtest86\+-6-386.patch
72 cd build32
73 make boot/startup.o
74 objdump -t boot/startup.o | \
75 awk '/patch/ { print "sed -i \"s|" $5 "|0x" $1 "|\" ../boot/setup.S" }' | sh
76 make memtest.bin
77 tune_lzma memtest.bin 161,mf=bt2 LC 3 PB 2
78 }
81 # Rules to gen a SliTaz package suitable for Tazpkg.
82 genpkg_rules()
83 {
84 mkdir -p $fs/boot $install/usr/share/doc
85 cp $src/README* $install/usr/share/doc
86 cp $src/build32/memtest.bin.lzma $fs/boot/memtest.exe
87 }
89 # Pre and post install commands for Tazpkg.
90 post_install()
91 {
92 [ -s $1/boot/isolinux/isolinux.cfg ] &&
93 ! grep -qs 'Check memory' $1/boot/isolinux/isolinux.cfg && sed -i \
94 's|LABEL md5|LABEL memtest mem ram\
95 MENU LABEL Check memory\
96 KERNEL /boot/memtest.exe\
97 \n&|' $1/boot/isolinux/isolinux.cfg
98 true
99 }