diff options
| author | madlep | 2010-04-20 23:45:51 +1000 |
|---|---|---|
| committer | Adam Vandenberg | 2010-04-20 07:04:01 -0700 |
| commit | 4c1ea826d18b7e99f6dbe8e95f6c07171a401521 (patch) | |
| tree | 5f11d3a247b31bb7e418ce3eaee427660a75bded /Library/Formula | |
| parent | 5ba621324c281a190ef5645875faf8bb3039e6d6 (diff) | |
| download | homebrew-4c1ea826d18b7e99f6dbe8e95f6c07171a401521.tar.bz2 | |
Added svdlibc formula
SVDLIBC libary from http://tedlab.mit.edu/~dr/SVDLIBC/
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/svdlibc.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/svdlibc.rb b/Library/Formula/svdlibc.rb new file mode 100644 index 000000000..a9340d6c4 --- /dev/null +++ b/Library/Formula/svdlibc.rb @@ -0,0 +1,15 @@ +require 'formula' + +class Svdlibc <Formula + url 'http://tedlab.mit.edu/~dr/SVDLIBC/svdlibc.tgz' + homepage 'http://tedlab.mit.edu/~dr/SVDLIBC/' + md5 '0e1b3bc149f1da476fd81c58742b5ee9' + version '1.34' + + def install + # make only builds - no configure or install targets, have to copy files manually + system "make HOSTTYPE=target" + lib.install "target/libsvd.a" + bin.install "target/svd" + end +end |
