>> 26 04:46:29 2014     (r13663)
>> @@ -8,8 +8,8 @@
>> <!ENTITY bogofilter-download-ftp  " ">
>> <!ENTITY bogofilter-md5sum        "6ce27a692d2d4881e9898f3798dcf91c">
>> <!ENTITY bogofilter-size          "1.9 MB">
>> -  <!ENTITY bogofilter-buildsize     "40 MB">
>> -  <!ENTITY bogofilter-time          "0.5 SBU">
>> +  <!ENTITY bogofilter-buildsize     "14 MB">
>> +  <!ENTITY bogofilter-time          "less than 0.1 SBU">
>> ]>
>>
>>
>
> Either your SBU stats are broken or something else is going on. It takes
> at least 40 seconds to build the package with "make -j4" where SBU is
> something little over 1:30.
>
>> <sect1 id="bogofilter" xreflabel="Bogofilter-&bogofilter-version;"

This is the script that I am using:

#!/bin/bash
PROGRAM=gtk-vnc-0.5.3
SDIR=$PWD
TIMEFORMAT="%1R Elapsed Time - $PROGRAM"

{
tar -xvf $PROGRAM.tar.?z*
pushd $PROGRAM
time {
               ./configure --prefix=/usr \
            --with-gtk=3.0 \
            --enable-vala \
            --without-sasl &&
                make -j1 &&
                make install DESTDIR=$PWD/dest
     }
} 2>&1 | tee $SDIR/logs/$PROGRAM.log
popd
base_sbu=269
echo $base_sbu
buildtime=`tail -n1 $SDIR/logs/$PROGRAM.log|cut -f1 -d" "`
echo $buildtime
sbu=`echo "scale=3; $buildtime / $base_sbu" | bc`
echo SBU: $sbu >> $SDIR/logs/$PROGRAM.log

If that is incorrect then I need to know.

Regards,

Christopher.

-- 
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to