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

class Arss < Formula
  homepage 'http://arss.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/arss/arss/0.2.3/arss-0.2.3-src.tar.gz'
  md5 '7a349ac00dd2732e70043254b4183255'

  depends_on 'cmake' => :build
  depends_on 'fftw'

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