Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
autogen 5.11.5
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
  • Loading branch information
Sharpie authored and adamv committed Apr 12, 2011
1 parent a74c93f commit 2da2a70
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Library/Formula/autogen.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
require 'formula'

class Autogen < Formula
homepage 'http://autogen.sourceforge.net'
url 'http://sourceforge.net/projects/autogen/files/AutoGen/AutoGen-5.11.5/autogen-5.11.5.tar.bz2'
md5 '51c841eab6114de22b55f77a1c4f85b8'

depends_on 'guile'

def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"

# make and install must be separate steps for this formula
system "make"
system "make install"
end
end

0 comments on commit 2da2a70

Please sign in to comment.