diff options
| author | Dan Palmer | 2013-08-08 23:16:17 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2013-10-29 07:32:11 -0700 |
| commit | ae270a6d7495bfb110b1154a50ff60ebf500cf46 (patch) | |
| tree | 86e0b35fab7d490ed6b7aaadd390847b191147fb | |
| parent | bc37329aedc8962cb46f6ba8be03a476d028f135 (diff) | |
| download | homebrew-ae270a6d7495bfb110b1154a50ff60ebf500cf46.tar.bz2 | |
radamsa 0.3
Closes #21772.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/radamsa.rb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Library/Formula/radamsa.rb b/Library/Formula/radamsa.rb new file mode 100644 index 000000000..145b04ff9 --- /dev/null +++ b/Library/Formula/radamsa.rb @@ -0,0 +1,31 @@ +require 'formula' + +class Radamsa < Formula + homepage 'https://code.google.com/p/ouspg/wiki/Radamsa' + url 'https://ouspg.googlecode.com/files/radamsa-0.3.tar.gz' + sha1 '94664298b9c5c1563fe4aa7b8fc8530bb6628a51' + + def install + system "make" + man1.install "doc/radamsa.1" + prefix.install Dir['*'] + end + + def caveats; <<-EOS.undent + The Radamsa binary has been installed. + The Lisp source code has been copied to: + #{prefix}/rad + + To be able to recompile the source to C, you will need run: + $ make get-owl + + Tests can be run with: + $ make .seal-of-quality + + EOS + end + + test do + system "radamsa -V" + end +end |
