Skip to content

Instantly share code, notes, and snippets.

@sweetmandm
Last active August 29, 2015 14:17
Show Gist options
  • Save sweetmandm/ed19af1b2672ba603d82 to your computer and use it in GitHub Desktop.
Save sweetmandm/ed19af1b2672ba603d82 to your computer and use it in GitHub Desktop.
class Liblouis < Formula
homepage "http://liblouis.org"
url "https://github.com/liblouis/liblouis.git", :using => :git, :tag => "v2.6.2"
sha256 ""
depends_on "autoconf"
depends_on "automake"
depends_on "libtool"
depends_on "texinfo"
def install
system "./autogen.sh"
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system bin/"lou_translate", "--version"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment