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