Omit dependency on setup-helper - pee - Pee a password manager;Pee - because yo… | |
git clone git://vernunftzentrum.de/pee.git | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit 846b77953231477b1d9e733b365a3c5d9c6270b2 | |
parent 9ba089248bdad4bee51c949259845d22b7a71df6 | |
Author: Christian Kellermann <[email protected]> | |
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(-) | |
--- | |
diff --git a/static-compilation.sh b/static-compilation.sh | |
@@ -5,7 +5,6 @@ chicken-install -r check-errors >/dev/null || echo Fetching che… | |
chicken-install -r foreigners >/dev/null || echo Fetching foreigners has faile… | |
chicken-install -r getopt-long >/dev/null || echo Fetching getopt-long has fai… | |
chicken-install -r matchable >/dev/null || echo Fetching matchable has failed. | |
-chicken-install -r setup-helper >/dev/null || echo Fetching setup-helper has f… | |
chicken-install -r string-utils >/dev/null || echo Fetching string-utils has f… | |
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… | |
csc -unit foreigners -uses matchable -emit-import-library foreigners -c foreig… | |
csc -unit getopt-long -uses srfi-13 -uses srfi-14 -uses data-structures -uses … | |
csc -unit matchable -emit-import-library matchable -c matchable/matchable.scm … | |
-csc -unit setup-api -emit-import-library setup-api -c ../chicken-core/setup-ap… | |
-csc -unit setup-helper -uses setup-api -emit-import-library setup-helper -c se… | |
csc -unit to-hex -emit-import-library to-hex -c string-utils/to-hex.scm -o to-… | |
csc -unit tweetnacl -emit-import-library tweetnacl -c tweetnacl/tweetnacl.scm … | |
csc -unit type-checks -uses type-errors -J -c ./check-errors/type-checks.scm -… | |
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… | |
+csc -uses matchable -uses foreigners -c stty/stty.scm -emit-import-library stt… | |
csc -uses srfi-1 -uses srfi-4 -uses utils -uses stty -uses crypto-helper -uses… | |
csc -static *o ./tweetnacl/tweetnacl.impl.o -o pee | |
+strip ./pee | |
+ | |
rm -r matchable blob-utils check-errors foreigners getopt-long setup-helper st… | |
rm *.o *.import.* |