aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/fann.rb
blob: eabfa6d4ce47948f0bcfda1743693e0b70124846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Fann < Formula
  homepage 'http://leenissen.dk/fann'
  url 'http://downloads.sourceforge.net/project/fann/fann/2.1.0beta/fann-2.1.0beta.zip'
  md5 '9c53d96ce415c927cb97b8f9de2ea881'

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