2334b2943b
The Genetic Algorithm Utility Library (or, GAUL for short) is a flexible programming library designed to aid in the development of applications that use genetic, or evolutionary, algorithms. Gaul would be a dependency in the requested pgrouting formula. Gaul builds well with superenv and is under active development. It has no dependencies itself. Tested on 10.8.2 w/XCode-4.5.1. Closes Homebrew/homebrew#15708. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
473 B
Ruby
15 lines
473 B
Ruby
require 'formula'
|
|
|
|
class Gaul < Formula
|
|
homepage 'http://gaul.sourceforge.net/'
|
|
url 'http://sourceforge.net/projects/gaul/files/gaul-devel/0.1850-0/gaul-devel-0.1850-0.tar.gz'
|
|
sha1 '2ec57a5bce2ff7fc9f9c3453b2ea2d3aec248350'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-debug",
|
|
"--disable-g",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|