homebrew-core/Formula/matlab2tikz.rb
Egon Geerardyn d7ed648bd9 matlab2tikz 1.0.0
Update matlab2tikz to 1.0.0

Closes Homebrew/homebrew#41005.
Closes Homebrew/homebrew#41007.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-06-23 17:18:45 +01:00

14 lines
416 B
Ruby

require "formula"
class Matlab2tikz < Formula
desc "Convert MATLAB(R) figures into TikZ/Pgfplots figures"
homepage "https://github.com/matlab2tikz/matlab2tikz"
url "https://github.com/matlab2tikz/matlab2tikz/archive/1.0.0.tar.gz"
sha1 "ed59a4973dca0624b5f0baf8e4d8111867793ae1"
head "https://github.com/matlab2tikz/matlab2tikz.git"
def install
(share/"matlab2tikz").install Dir["src/*"]
end
end