blob: 3d85528c8e83bf6c1b48893316da5963312942ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class SwishE < Formula
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
|