Created
April 7, 2012 16:29
-
-
Save devn/2330149 to your computer and use it in GitHub Desktop.
lush formula
This file contains hidden or 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 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