Added svdlibc formula

SVDLIBC libary from http://tedlab.mit.edu/~dr/SVDLIBC/

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
madlep 2010-04-20 23:45:51 +10:00 committed by Adam Vandenberg
parent 7570c95242
commit 2c8b3f93e9
1 changed files with 15 additions and 0 deletions

15
Formula/svdlibc.rb Normal file
View File

@ -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