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/'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '0970c5f8dcb2f12130b38a9fc7dd99c2f2d7ebcb'
|
2010-06-02 21:15:15 +00:00
|
|
|
|
|
|
|
depends_on 'libxml2'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|