blob: 5c882aaf5bcdacd2ecd61823c4bfac30aa4cb2f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require "formula"
class Shivavg < Formula
homepage "http://sourceforge.net/projects/shivavg/"
url "https://downloads.sourceforge.net/project/shivavg/ShivaVG/0.2.1/ShivaVG-0.2.1.zip"
sha1 "f018c9d525f6cc65703bd1310662aca68e04e5d3"
depends_on "automake" => :build
depends_on "autoconf" => :build
depends_on "libtool" => :build
def install
system "/bin/sh", "autogen.sh"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-example-all=no"
system "make", "install"
end
end
|