14 lines
327 B
Ruby
14 lines
327 B
Ruby
require 'formula'
|
|
|
|
class SwishE < Formula
|
|
homepage 'http://swish-e.org/'
|
|
url 'http://swish-e.org/distribution/swish-e-2.4.7.tar.gz'
|
|
sha1 '0970c5f8dcb2f12130b38a9fc7dd99c2f2d7ebcb'
|
|
|
|
depends_on 'libxml2'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
|
|
system "make install"
|
|
end
|
|
end
|