Last active
October 3, 2015 07:38
-
-
Save Echos/2418271 to your computer and use it in GitHub Desktop.
HyperEstraier for Homebrew
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
require 'formula' | |
class Hyperestraier <Formula | |
url 'http://fallabs.com/hyperestraier/hyperestraier-1.4.13.tar.gz' | |
homepage 'http://fallabs.com/hyperestraier/' | |
md5 '133305e54785a93b25f4e2f7b421e80d' | |
depends_on 'qdbm' | |
depends_on 'libiconv' | |
depends_on 'zlib' | |
def install | |
system "./configure", "--disable-debug", "--disable-dependency-tracking", | |
"--prefix=#{prefix}" | |
system "make mac" | |
system "make install-mac" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment