diff options
-rw-r--r-- | srfi-214.egg | 16 | ||||
-rw-r--r-- | srfi-214.scm | 2 | ||||
-rw-r--r-- | tests/run.scm | 1 |
3 files changed, 19 insertions, 0 deletions
diff --git a/srfi-214.egg b/srfi-214.egg new file mode 100644 index 0000000..9040cd3 --- /dev/null +++ b/srfi-214.egg @@ -0,0 +1,16 @@ +((synopsis "SRFI-133: Vector Library (R7RS-compatible)") + (version "0.1") + (license "BSD") + (category data) + (dependencies r7rs) + (author "Adam Nelson") + (maintainer "Leah Neukirchen") + (components + (extension + srfi-214 + (types-file) + (csc-options "-O3" "-d0") + (source-dependencies "implementation/flexvectors.sld" + "implementation/flexvectors-body1.scm" + "implementation/flexvectors-body2.scm" + "implementation/flexvectors-body3.scm")))) diff --git a/srfi-214.scm b/srfi-214.scm new file mode 100644 index 0000000..e1f39d5 --- /dev/null +++ b/srfi-214.scm @@ -0,0 +1,2 @@ +(import r7rs) +(include "implementation/flexvectors.sld") diff --git a/tests/run.scm b/tests/run.scm new file mode 100644 index 0000000..8700f4d --- /dev/null +++ b/tests/run.scm @@ -0,0 +1 @@ +(load "../implementation/tests.scm") |