Skip to content

Instantly share code, notes, and snippets.

@takumakei
Created April 11, 2014 06:13
Show Gist options
  • Save takumakei/10443469 to your computer and use it in GitHub Desktop.
Save takumakei/10443469 to your computer and use it in GitHub Desktop.
Homebrew formula for the eb
require "formula"
class Eb < Formula
homepage "http://www.sra.co.jp/people/m-kasahr/eb/"
url "ftp://ftp.sra.co.jp/pub/misc/eb/eb-4.4.3.tar.bz2"
sha1 "1cc55c90fcac224bf299289e7a0fe1559f0761ab"
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
end
@takumakei
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment