73 lines
1.9 KiB
Ruby
73 lines
1.9 KiB
Ruby
class Lysp < Formula
|
|
desc "Small Lisp interpreter"
|
|
homepage "http://www.piumarta.com/software/lysp/"
|
|
url "http://www.piumarta.com/software/lysp/lysp-1.1.tar.gz"
|
|
sha256 "436a8401f8a5cc4f32108838ac89c0d132ec727239d6023b9b67468485509641"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "373ab2ceec5a09ff44688f4b7bb74b3c0d3f3ecad879feb9af64e7b228b8a99e" => :yosemite
|
|
sha256 "4bc277151bf52e860522427d92e621887437748265da7161a823810d27af4453" => :mavericks
|
|
sha256 "153ead5e48fe4eceda1635f07ae4cd111699662ee845c4d370359e5d128b9b07" => :mountain_lion
|
|
end
|
|
|
|
depends_on "bdw-gc"
|
|
depends_on "gcc"
|
|
|
|
fails_with :clang do
|
|
cause "use of unknown builtin '__builtin_return'"
|
|
end
|
|
|
|
# Use our CFLAGS
|
|
patch :DATA
|
|
|
|
def install
|
|
# this option is supported only for ELF object files
|
|
inreplace "Makefile", "-rdynamic", ""
|
|
|
|
system "make", "CC=#{ENV.cc}"
|
|
bin.install "lysp", "gclysp"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.l").write <<-EOS.undent
|
|
(define println (subr (dlsym "printlnSubr")))
|
|
(define + (subr (dlsym "addSubr")))
|
|
(println (+ 40 2))
|
|
EOS
|
|
|
|
assert_equal "42", shell_output("#{bin}/lysp test.l").chomp
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/Makefile b/Makefile
|
|
index fc3f5d9..0b0e20d 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -1,6 +1,3 @@
|
|
-CFLAGS = -O -g -Wall
|
|
-CFLAGSO = -O3 -g -Wall -DNDEBUG
|
|
-CFLAGSs = -Os -g -Wall -DNDEBUG
|
|
LDLIBS = -rdynamic
|
|
|
|
all : lysp gclysp
|
|
@@ -10,15 +7,15 @@ lysp : lysp.c gc.c
|
|
size $@
|
|
|
|
olysp: lysp.c gc.c
|
|
- $(CC) $(CFLAGSO) -DBDWGC=0 -o $@ lysp.c gc.c $(LDLIBS) -ldl
|
|
+ $(CC) $(CFLAGS) -DBDWGC=0 -o $@ lysp.c gc.c $(LDLIBS) -ldl
|
|
size $@
|
|
|
|
ulysp: lysp.c gc.c
|
|
- $(CC) $(CFLAGSs) -DBDWGC=0 -o $@ lysp.c gc.c $(LDLIBS) -ldl
|
|
+ $(CC) $(CFLAGS) -DBDWGC=0 -o $@ lysp.c gc.c $(LDLIBS) -ldl
|
|
size $@
|
|
|
|
gclysp: lysp.c
|
|
- $(CC) $(CFLAGSO) -DBDWGC=1 -o $@ lysp.c $(LDLIBS) -lgc
|
|
+ $(CC) $(CFLAGS) -DBDWGC=1 -o $@ lysp.c $(LDLIBS) -lgc
|
|
size $@
|
|
|
|
run : all
|