aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHoutan Bastani2013-03-12 12:35:52 +0100
committerAdam Vandenberg2013-06-17 18:03:04 -0700
commit40fd168c02764ddb1fba642017f93fcbf8810703 (patch)
treefb581733f09c7f7757253317da3d994d4c7808d2
parent514b6c94dfc50210d78ff296dd5975af1fb5f034 (diff)
downloadhomebrew-40fd168c02764ddb1fba642017f93fcbf8810703.tar.bz2
matlab2tikz 0.3.2
A script to convert MATLAB/Octave into TikZ figures for easy and consistent inclusion into LaTeX. Closes #18428. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/matlab2tikz.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/matlab2tikz.rb b/Library/Formula/matlab2tikz.rb
new file mode 100644
index 000000000..3c7c21645
--- /dev/null
+++ b/Library/Formula/matlab2tikz.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Matlab2tikz < Formula
+ homepage 'https://github.com/nschloe/matlab2tikz'
+ url 'https://github.com/nschloe/matlab2tikz/archive/0.3.2.tar.gz'
+ sha1 '026762e58b51a14c91921baf556cd5d349c8b8d1'
+
+ head 'https://github.com/nschloe/matlab2tikz.git'
+
+ def install
+ (share/'matlab2tikz').install Dir['src/*']
+ end
+end