blob: b1df4e87148a9d0e3d0ae60764dff815e0178b6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|