diff options
| author | David Caldwell | 2013-12-13 22:44:34 -0800 |
|---|---|---|
| committer | Mike McQuaid | 2013-12-14 17:44:51 +0000 |
| commit | 0e3e40a1e96c04185c077eb07cee7b049eeec1d6 (patch) | |
| tree | 45876757949ac3508ed6146d4684754251ad176e | |
| parent | 1c03b5e49d09d77177a6daa8035256aa8bd26f11 (diff) | |
| download | homebrew-0e3e40a1e96c04185c077eb07cee7b049eeec1d6.tar.bz2 | |
lib3ds 1.3 (new formula)
Library for managing 3D-Studio Release 3 and 4 ".3DS" files.
Closes #25198.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -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 |
