Created
September 26, 2015 13:31
-
-
Save wwwdata/666d57a9f074ca79f48d to your computer and use it in GitHub Desktop.
It is working except for the test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Dspdfviewer < Formula | |
desc "Dual-Screen PDF Viewer for latex-beamer" | |
homepage "http://dspdfviewer.danny-edel.de" | |
url "https://github.com/dannyedel/dspdfviewer/archive/v1.13.1.tar.gz" | |
version "1.13.1" | |
sha256 "333588de0316cfdb5821b8484ee55690dfa3c7431b67c126bfdbe9c9cc3e1ed4" | |
depends_on "cmake" | |
depends_on "poppler" => "with-qt4" | |
def install | |
mkdir "build" do | |
system "cmake", ".." | |
system "make", "install" | |
end | |
end | |
test do | |
system "dspdfviewer", "-v" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment