diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/lib3ds.rb | 12 | 
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/lib3ds.rb b/Library/Formula/lib3ds.rb new file mode 100644 index 000000000..ffce27ab3 --- /dev/null +++ b/Library/Formula/lib3ds.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Lib3ds < Formula +  homepage 'http://code.google.com/p/lib3ds/' +  url 'http://lib3ds.googlecode.com/files/lib3ds-1.3.0.zip' +  sha1 '544262eac73c1e4a1d77f0f1cbd90b990a996db8' + +  def install +    system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking" +    system "make install" +  end +end  | 
