aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBen Swift2013-08-02 16:02:44 +1000
committerAdam Vandenberg2013-10-29 19:56:33 -0700
commitf8041aa56658c9deb74ea07abe00530634ba981c (patch)
treede5d4bd21f4b06f004326599a93a1a47ad75153a /Library
parentfd7157269e37633e9e117688e9c1fed90c6ae311 (diff)
downloadhomebrew-f8041aa56658c9deb74ea07abe00530634ba981c.tar.bz2
ShivaVG 0.2.1
Closes #21605. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/shivavg.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/shivavg.rb b/Library/Formula/shivavg.rb
new file mode 100644
index 000000000..7667a1e37
--- /dev/null
+++ b/Library/Formula/shivavg.rb
@@ -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