blob: 6a463b0a5f43335f856fbde284ded79b21b027cc (
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'
  md5 '10b9a803025c5f428014a7f1ff849ecc'
  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
 |