aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/fann.rb
blob: e551083d0420f67cfa9e93059e676f1461a12822 (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/wp/'
  url 'http://downloads.sourceforge.net/project/fann/fann/2.2.0/FANN-2.2.0-Source.tar.gz'
  md5 'c9d6c8da5bb70276352a1718a668562c'

  depends_on 'cmake' => :build

  def install
    system "cmake . #{std_cmake_parameters}"
    system "make install"
  end
end