Last active
August 29, 2015 14:17
-
-
Save sweetmandm/ed19af1b2672ba603d82 to your computer and use it in GitHub Desktop.
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 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