Introduction
Introduction Statistics Contact Development Disclaimer Help
Make static-compilation.sh the compile.sh script - pee - Pee a password manager…
git clone git://vernunftzentrum.de/pee.git
Log
Files
Refs
LICENSE
---
commit 499d93e6d0b18bab4a07665685a85c430fff29ec
parent e04ed05a2fc0185d12e3d5aa6347f188e8e6c17e
Author: Christian Kellermann <[email protected]>
Date: Tue, 19 Apr 2016 16:06:33 +0200
Make static-compilation.sh the compile.sh script
Diffstat:
compile.sh | 31 +++++++++++++++++++++++++++++++
static-compilation.sh | 31 -------------------------------
2 files changed, 31 insertions(+), 31 deletions(-)
---
diff --git a/compile.sh b/compile.sh
@@ -0,0 +1,31 @@
+#!/bin/sh
+set -e
+
+chicken-install -r blob-utils >/dev/null || echo Fetching blob-utils has faile…
+chicken-install -r check-errors >/dev/null || echo Fetching check-errors has f…
+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 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.
+
+cd matchable
+csc -unit matchable -emit-import-library matchable -c matchable.scm -o matchab…
+mv matchable.o ..; cd ..
+csc -unit blob-hexadecimal -uses type-checks -uses to-hex -emit-import-library…
+csc -unit crypto-helper -uses blob-hexadecimal -emit-import-library crypto-hel…
+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 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 -c stty/stty.scm -emit-import-library stt…
+csc -uses srfi-1,srfi-4,srfi-13,srfi-14,utils,stty,crypto-helper,tweetnacl,get…
+csc -static *o ./tweetnacl/tweetnacl.impl.o -o pee
+
+strip ./pee
+
+rm -r matchable blob-utils check-errors foreigners getopt-long string-utils st…
+rm *.o *.import.*
diff --git a/static-compilation.sh b/static-compilation.sh
@@ -1,31 +0,0 @@
-#!/bin/sh
-set -e
-
-chicken-install -r blob-utils >/dev/null || echo Fetching blob-utils has faile…
-chicken-install -r check-errors >/dev/null || echo Fetching check-errors has f…
-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 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.
-
-cd matchable
-csc -unit matchable -emit-import-library matchable -c matchable.scm -o matchab…
-mv matchable.o ..; cd ..
-csc -unit blob-hexadecimal -uses type-checks -uses to-hex -emit-import-library…
-csc -unit crypto-helper -uses blob-hexadecimal -emit-import-library crypto-hel…
-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 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 -c stty/stty.scm -emit-import-library stt…
-csc -uses srfi-1,srfi-4,srfi-13,srfi-14,utils,stty,crypto-helper,tweetnacl,get…
-csc -static *o ./tweetnacl/tweetnacl.impl.o -o pee
-
-strip ./pee
-
-rm -r matchable blob-utils check-errors foreigners getopt-long string-utils st…
-rm *.o *.import.*
You are viewing proxied material from vernunftzentrum.de. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.