about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2024-05-28 22:51:06 -0500
committerCase Duckworth2024-05-28 22:51:06 -0500
commit16139a033dfb80b4ea4305a873d28c4920a81bf8 (patch)
tree98c8c49122518cc2a061d3b415228724f1b44501
parentVersion 1 :) (diff)
downloadscramble-16139a033dfb80b4ea4305a873d28c4920a81bf8.tar.gz
scramble-16139a033dfb80b4ea4305a873d28c4920a81bf8.zip
Add README, LICENSE
-rw-r--r--COPYING26
-rw-r--r--README31
-rw-r--r--scramble.egg1
3 files changed, 58 insertions, 0 deletions
diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..7e3eab2 --- /dev/null +++ b/COPYING
@@ -0,0 +1,26 @@
1Copyright 2024 Case Duckworth
2
3Redistribution and use in source and binary forms, with or without modification,
4are permitted provided that the following conditions are met:
5
61. Redistributions of source code must retain the above copyright notice, this
7 list of conditions and the following disclaimer.
8
92. Redistributions in binary form must reproduce the above copyright notice,
10 this list of conditions and the following disclaimer in the documentation
11 and/or other materials provided with the distribution.
12
133. Neither the name of the copyright holder nor the names of its contributors
14 may be used to endorse or promote products derived from this software without
15 specific prior written permission.
16
17THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND
18ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
21ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
24ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file
diff --git a/README b/README new file mode 100644 index 0000000..aa4af14 --- /dev/null +++ b/README
@@ -0,0 +1,31 @@
1SCRAMBLE : turn an egg into a Makefile
2(look the name's not clever. so it goes)
3
4Scramble turns a CHICKEN egg into a Makefile.
5It's pretty similar in function to `chicken-install`,
6except that it puts all the build artifacts in `build/`.
7
8Run it like this:
9
10 scramble [egg-directory-or-name]
11
12where EGG-DIRECTORY-OR-NAME is the directory in which the .egg resides,
13or the name of the .egg itself. It defaults to the current directory.
14
15Scramble will output the Makefile to standard out.
16Redirect it to a file to save it.
17
18To install scramble, run
19
20 make install
21
22on this repo, or run
23
24 chicken-install -s
25
26either will work :)
27
28The Makefile in this repo is generated with scramble.
29
30Scramble is licensed under the BSD 3-clause license.
31Details in COPYING. \ No newline at end of file
diff --git a/scramble.egg b/scramble.egg index 28df21b..6a8eeac 100644 --- a/scramble.egg +++ b/scramble.egg
@@ -1,5 +1,6 @@
1((author "Case Duckworth") 1((author "Case Duckworth")
2 (synopsis "Convert an egg to a Makefile") 2 (synopsis "Convert an egg to a Makefile")
3 (license "BSD-3")
3 (dependencies (chicken "5.3.0") utf8 srfi-1) 4 (dependencies (chicken "5.3.0") utf8 srfi-1)
4 ;; (test-dependencies test) 5 ;; (test-dependencies test)
5 (component-options 6 (component-options