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