stlviewer shows a 3d representation of stl files

Closes Homebrew/homebrew#19196.

Signed-off-by: Xiyue Deng <manphiz@gmail.com>
This commit is contained in:
Tobi Lehman 2013-04-14 14:18:20 -07:00 committed by Xiyue Deng
parent ed23383b58
commit aecd7556cf

12
Formula/stlviewer.rb Normal file
View file

@ -0,0 +1,12 @@
require 'formula'
class Stlviewer < Formula
homepage 'https://github.com/vishpat/stlviewer#readme'
url 'https://github.com/vishpat/stlviewer/archive/release-0.1.tar.gz'
sha1 '2ceeee6e36de4b9e95002940d893819fb9e09120'
def install
system './compile.py'
bin.install 'stlviewer'
end
end