wok annotate memtest/receipt @ rev 19479
paper-icon-theme: update from git, make package a way smaller (remove HiDPI icons and shrink svg icons)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Tue Nov 01 04:02:18 2016 +0200 (2016-11-01) |
parents | c01e683d8f21 |
children | 1bf63f69896d |
rev | line source |
---|---|
pascal@524 | 1 # SliTaz package receipt. |
pascal@524 | 2 |
pascal@524 | 3 PACKAGE="memtest" |
pascal@15468 | 4 VERSION="5.01" |
pascal@524 | 5 CATEGORY="base-system" |
pascal@524 | 6 SHORT_DESC="Memory failures detection tool." |
pascal@524 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@17225 | 8 LICENSE="GPL2" |
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@15468 | 20 sed -i '/scp memtest.bin/d' Makefile |
pascal@19171 | 21 for i in array-size io setup ; do |
pascal@17225 | 22 patch -p1 < $stuff/$SOURCE-$VERSION-$i.patch |
pascal@17225 | 23 done |
pascal@1734 | 24 make |
pascal@13269 | 25 cp $stuff/*.S $stuff/pack . |
pascal@15188 | 26 for i in bootloader unpack ; do |
pascal@15188 | 27 cc -o $i.o -Wa,-a=$i.lst -c $i.S |
pascal@15188 | 28 objcopy -O binary $i.o $i.bin |
pascal@15188 | 29 done |
pascal@17223 | 30 sed -i "s/VERSION/$VERSION/" pack |
pascal@15188 | 31 ./pack --build bootloader.bin unpack.bin |
pascal@13269 | 32 ./pack memtest.bin memtest.packed |
pascal@17227 | 33 mv memtest.bin memtest.bin.console |
pascal@14796 | 34 sed -i -e 's/SERIAL_CONSOLE_DEFAULT 0/SERIAL_CONSOLE_DEFAULT 1/' \ |
pascal@14796 | 35 -e 's/SERIAL_BAUD_RATE 9600/SERIAL_BAUD_RATE 115200/' config.h |
pascal@14796 | 36 make clean |
pascal@14796 | 37 make |
pascal@14796 | 38 ./pack memtest.bin memtest.packed-115200 |
pascal@17227 | 39 mv memtest.bin memtest.bin.serial |
pascal@524 | 40 } |
pascal@524 | 41 |
pascal@524 | 42 |
pascal@524 | 43 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@524 | 44 genpkg_rules() |
pascal@524 | 45 { |
pascal@13269 | 46 mkdir -p $fs/boot |
pascal@15188 | 47 cp $src/memtest.packed $fs/boot/memtest |
pascal@524 | 48 } |