diff options
| author | jquast | 2014-05-24 16:05:58 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-05-26 08:20:40 -0700 |
| commit | 2060ee84b20a43fd18a132a0bce5406db64b5255 (patch) | |
| tree | 8e22d24553d4cfbc3b796ceb83a36976b98d4339 /Library/Formula | |
| parent | 9829f54c380336c5add471ca8136b283bfe66c6d (diff) | |
| download | homebrew-2060ee84b20a43fd18a132a0bce5406db64b5255.tar.bz2 | |
picolisp 3.1.6
Closes #29559.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/picolisp.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/picolisp.rb b/Library/Formula/picolisp.rb new file mode 100644 index 000000000..279ef84c0 --- /dev/null +++ b/Library/Formula/picolisp.rb @@ -0,0 +1,13 @@ +require "formula" + +class Picolisp < Formula + homepage "http://picolisp.com/wiki/?home" + url "http://software-lab.de/picoLisp-3.1.6.tgz" + sha256 "8568b5b13002ff7ba35248dc31508e1579e96428c0cef90a2d47b4a5f875cc2c" + + def install + src_dir = MacOS.prefer_64_bit? ? "src64" : "src" + system "make", "-C", src_dir + bin.install "bin/picolisp" + end +end |
