homebrew-core/Formula/lib3ds.rb
David Caldwell 59508b9475 lib3ds 1.3 (new formula)
Library for managing 3D-Studio Release 3 and 4 ".3DS" files.

Closes Homebrew/homebrew#25198.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-12-14 17:44:51 +00:00

12 lines
329 B
Ruby

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