Skip to content

Instantly share code, notes, and snippets.

@huacnlee
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save huacnlee/22469a319b2b01b07bb3 to your computer and use it in GitHub Desktop.
Save huacnlee/22469a319b2b01b07bb3 to your computer and use it in GitHub Desktop.
libeasy_homebrew.rb
class Libeasy < Formula
homepage "http://gitlab.alibaba-inc.com/zicheng.lhs/libeasy"
head "http://gitlab.alibaba-inc.com/zicheng.lhs/libeasy.git"
version "1.0.3"
depends_on "libtool" => :build
depends_on "automake" => :build
depends_on "autoconf" => :build
def install
system "./bootstrap.sh"
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end
test do
system "false"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment