blob: e1ae41c55e26bb9e554379142840ecf24d4a0b44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Sary < Formula
url 'http://sary.sourceforge.net/sary-1.2.0.tar.gz'
sha1 'cfc671ca99d58df4ed8985408499f96579af18f3'
homepage 'http://sary.sourceforge.net/'
depends_on 'pkg-config' => :build
depends_on 'glib'
def install
system "./configure", "--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end
|