Skip to content

Instantly share code, notes, and snippets.

@devn
Created April 7, 2012 16:29
Show Gist options
  • Select an option

  • Save devn/2330149 to your computer and use it in GitHub Desktop.

Select an option

Save devn/2330149 to your computer and use it in GitHub Desktop.
lush formula
require 'formula'
class Lush < Formula
url 'http://downloads.sourceforge.net/project/lush/lush2/lush-2.0.1.tar.gz'
homepage 'http://lush.sourceforge.net/'
md5 '35547934a3038a34ef64272cec51c60b'
def install
# will not build 64-bit
ENV.m32
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--infodir=#{info}",
"--mandir=#{man}"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment