added arss

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Tony Garnock-Jones 2010-10-16 14:43:45 -04:00 committed by Adam Vandenberg
parent 6f814a2199
commit 127c442baa
1 changed files with 17 additions and 0 deletions

17
Formula/arss.rb Normal file
View File

@ -0,0 +1,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