blob: 85e94f1f358eaac102944f2983e8888cba56e4a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|