wok annotate memtest/receipt @ rev 15372
php-auth-pam: php 5.4 patch
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Oct 17 13:16:15 2013 +0000 (2013-10-17) |
parents | 8d9ce0de31e0 |
children | 8ac80fe62efb |
rev | line source |
---|---|
pascal@524 | 1 # SliTaz package receipt. |
pascal@524 | 2 |
pascal@524 | 3 PACKAGE="memtest" |
slaxemulator@8153 | 4 VERSION="4.20" |
pascal@524 | 5 CATEGORY="base-system" |
pascal@524 | 6 SHORT_DESC="Memory failures detection tool." |
pascal@524 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14798 | 8 LICENSE="GPL" |
pascal@1734 | 9 SOURCE="memtest86+" |
pascal@1734 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@524 | 11 WEB_SITE="http://www.memtest.org/" |
pascal@1734 | 12 WGET_URL="${WEB_SITE}download/$VERSION/$TARBALL" |
pascal@524 | 13 |
pascal@14798 | 14 BUILD_DEPENDS="xz" |
pascal@13269 | 15 |
pascal@524 | 16 # Rules to configure and make the package. |
pascal@524 | 17 compile_rules() |
pascal@524 | 18 { |
pascal@1734 | 19 cd $src |
pascal@1734 | 20 make |
pascal@13269 | 21 cp $stuff/*.S $stuff/pack . |
pascal@15188 | 22 for i in bootloader unpack ; do |
pascal@15188 | 23 cc -o $i.o -Wa,-a=$i.lst -c $i.S |
pascal@15188 | 24 objcopy -O binary $i.o $i.bin |
pascal@15188 | 25 done |
pascal@15188 | 26 ./pack --build bootloader.bin unpack.bin |
pascal@13269 | 27 ./pack memtest.bin memtest.packed |
pascal@14796 | 28 sed -i -e 's/SERIAL_CONSOLE_DEFAULT 0/SERIAL_CONSOLE_DEFAULT 1/' \ |
pascal@14796 | 29 -e 's/SERIAL_BAUD_RATE 9600/SERIAL_BAUD_RATE 115200/' config.h |
pascal@14796 | 30 make clean |
pascal@14796 | 31 make |
pascal@14796 | 32 ./pack memtest.bin memtest.packed-115200 |
pascal@524 | 33 } |
pascal@524 | 34 |
pascal@524 | 35 |
pascal@524 | 36 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@524 | 37 genpkg_rules() |
pascal@524 | 38 { |
pascal@13269 | 39 mkdir -p $fs/boot |
pascal@15188 | 40 cp $src/memtest.packed $fs/boot/memtest |
pascal@524 | 41 } |