aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/fann.rb
blob: 82e706bd391ef1a3d68a8a2cae5bbc112ff6ef44 (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_args
    system "make install"
  end
end