diff options
| author | Michael C. Grant | 2014-01-13 17:32:28 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2014-01-13 17:32:28 +0000 |
| commit | 36841fc1e7af2394b7d889cc64e6b4ed848db21c (patch) | |
| tree | 9460fb5b89e971c7135d907c4f18641fc3ada3ec /Library | |
| parent | 310baaf930f4ec6af908be559505fc8c29bde19f (diff) | |
| download | homebrew-36841fc1e7af2394b7d889cc64e6b4ed848db21c.tar.bz2 | |
gl2ps 1.3.8 (new formula)
OpenGL to PostScript library (and PDF, EPS, SVG, PGF, LaTeX).
Closes #25872.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/gl2ps.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/gl2ps.rb b/Library/Formula/gl2ps.rb new file mode 100644 index 000000000..d5bfbb64d --- /dev/null +++ b/Library/Formula/gl2ps.rb @@ -0,0 +1,15 @@ +require "formula" + +class Gl2ps < Formula + homepage "http://www.geuz.org/gl2ps/" + url "http://geuz.org/gl2ps/src/gl2ps-1.3.8.tgz" + sha1 "792e11db0fe7a30a4dc4491af5098b047ec378b1" + + depends_on "cmake" => :build + depends_on :libpng + + def install + system "cmake", ".", *std_cmake_args + system "make", "install" + end +end |
