added arss
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
6f814a2199
commit
127c442baa
1 changed files with 17 additions and 0 deletions
17
Formula/arss.rb
Normal file
17
Formula/arss.rb
Normal 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
|
Loading…
Reference in a new issue