Skip to content

Instantly share code, notes, and snippets.

@Echos
Last active October 3, 2015 07:38
Show Gist options
  • Save Echos/2418271 to your computer and use it in GitHub Desktop.
Save Echos/2418271 to your computer and use it in GitHub Desktop.
HyperEstraier for Homebrew
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