Skip to content

Instantly share code, notes, and snippets.

@stefanschmidt
Created December 3, 2013 02:25
Show Gist options
  • Save stefanschmidt/7762867 to your computer and use it in GitHub Desktop.
Save stefanschmidt/7762867 to your computer and use it in GitHub Desktop.
Homebrew formula for pdfreflow
require 'formula'
class Pdfreflow < Formula
homepage 'http://sourceforge.net/projects/pdfreflow/'
url 'http://downloads.sourceforge.net/project/pdfreflow/pdfreflow-0.8.6.tgz'
sha1 '9adfb2378db3a206b0b0d0374802628328894889'
env :std
def install
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/pdfreflow", "--version"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment