Omit dependency on setup-helper - pee - Pee a password manager;Pee - because you have to...
 (HTM) git clone git://vernunftzentrum.de/pee.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit 846b77953231477b1d9e733b365a3c5d9c6270b2
 (DIR) parent 9ba089248bdad4bee51c949259845d22b7a71df6
 (HTM) Author: Christian Kellermann <ckeen@pestilenz.org>
       Date:   Sat,  9 Jan 2016 11:59:52 +0100
       
       Omit dependency on setup-helper
       
       That's just needed to install the stty egg, but we do it ourselves.
       
       Diffstat:
         static-compilation.sh               |       7 +++----
       
       1 file changed, 3 insertions(+), 4 deletions(-)
       ---
 (DIR) diff --git a/static-compilation.sh b/static-compilation.sh
       @@ -5,7 +5,6 @@ chicken-install -r check-errors >/dev/null || echo Fetching check-errors has fai
        chicken-install -r foreigners >/dev/null || echo Fetching foreigners has failed.
        chicken-install -r getopt-long >/dev/null || echo Fetching getopt-long has failed.
        chicken-install -r matchable >/dev/null || echo Fetching matchable has failed.
       -chicken-install -r setup-helper >/dev/null || echo Fetching setup-helper has failed.
        chicken-install -r string-utils >/dev/null || echo Fetching string-utils has failed.
        chicken-install -r stty >/dev/null || echo Fetching stty has failed.
        chicken-install -r tweetnacl >/dev/null || echo Fetching tweetnacl has failed.
       @@ -16,15 +15,15 @@ csc -unit crypto-helper -uses blob-hexadecimal -emit-import-library crypto-helpe
        csc -unit foreigners -uses matchable -emit-import-library foreigners -c foreigners/foreigners.scm -o foreigners.o
        csc -unit getopt-long -uses srfi-13 -uses srfi-14 -uses data-structures -uses matchable -Jc getopt-long/getopt-long.scm -o getopt-long.o
        csc -unit matchable -emit-import-library matchable -c matchable/matchable.scm -o matchable.o
       -csc -unit setup-api -emit-import-library setup-api -c ../chicken-core/setup-api.scm -o setup-api.o
       -csc -unit setup-helper -uses setup-api -emit-import-library setup-helper -c setup-helper/setup-helper.scm -o setup-helper.o
        csc -unit to-hex -emit-import-library to-hex -c string-utils/to-hex.scm -o to-hex.o
        csc -unit tweetnacl -emit-import-library tweetnacl -c tweetnacl/tweetnacl.scm -c tweetnacl/tweetnacl.impl.c -C -I./tweetnacl -o tweetnacl.o
        csc -unit type-checks -uses type-errors -J -c ./check-errors/type-checks.scm -o type-checks.o
        csc -unit type-errors -J -c ./check-errors/type-errors.scm  -o type-errors.o
       -csc -uses matchable -uses foreigners -uses setup-helper -c stty/stty.scm -emit-import-library stty -unit stty -o stty.o
       +csc -uses matchable -uses foreigners -c stty/stty.scm -emit-import-library stty -unit stty -o stty.o
        csc -uses srfi-1 -uses srfi-4 -uses utils -uses stty -uses crypto-helper -uses tweetnacl -uses getopt-long -uses matchable -c pee.scm -o pee.o
        csc -static *o ./tweetnacl/tweetnacl.impl.o  -o pee
        
       +strip ./pee
       +
        rm -r matchable blob-utils check-errors foreigners getopt-long setup-helper string-utils stty tweetnacl
        rm *.o *.import.*