2010-06-02 21:15:15 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class SwishE < Formula
|
2010-06-02 21:15:15 +00:00
|
|
|
url 'http://swish-e.org/distribution/swish-e-2.4.7.tar.gz'
|
|
|
|
homepage 'http://swish-e.org/'
|
|
|
|
md5 '736db7a65aed48bb3e2587c52833642d'
|
|
|
|
|
|
|
|
depends_on 'libxml2'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|