aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorTobi Lehman2013-04-14 14:18:20 -0700
committerXiyue Deng2013-08-22 17:42:10 -0700
commit76c20158935126fc6fdd10b709d51937f252a4e1 (patch)
treec09ee02805bcde30db87782a63a9d68aaf769d6f /Library
parent3aab8e7ec3b87f17b7fe730c425d5ca3d8eb4322 (diff)
downloadhomebrew-76c20158935126fc6fdd10b709d51937f252a4e1.tar.bz2
stlviewer shows a 3d representation of stl files
Closes #19196. Signed-off-by: Xiyue Deng <manphiz@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/stlviewer.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/stlviewer.rb b/Library/Formula/stlviewer.rb
new file mode 100644
index 000000000..dc6bf4360
--- /dev/null
+++ b/Library/Formula/stlviewer.rb
@@ -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