ShivaVG 0.2.1
Closes Homebrew/homebrew#21605. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
8db6bcc620
commit
8c404607eb
1 changed files with 19 additions and 0 deletions
19
Formula/shivavg.rb
Normal file
19
Formula/shivavg.rb
Normal file
|
@ -0,0 +1,19 @@
|
|||
require 'formula'
|
||||
|
||||
class Shivavg < Formula
|
||||
homepage 'http://sourceforge.net/projects/shivavg/'
|
||||
url 'http://downloads.sourceforge.net/project/shivavg/ShivaVG/0.2.1/ShivaVG-0.2.1.zip'
|
||||
sha1 'f018c9d525f6cc65703bd1310662aca68e04e5d3'
|
||||
|
||||
depends_on :automake
|
||||
depends_on :autoconf
|
||||
depends_on :libtool
|
||||
|
||||
def install
|
||||
system "autoreconf", "-ivf"
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}",
|
||||
"--with-example-all=no"
|
||||
system "make", "install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue