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

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

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

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