aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-05-31 20:11:05 -0500
committerJack Nagel2014-05-31 20:11:05 -0500
commit329e627da0a9d4cb652b9f07d1888a1fbf7bd55d (patch)
tree4537d839034d7a84b3dd0e4f30e48005ac4c3377 /Library
parentc2867908cbe2545ecaf82fa3d88b981ee9931538 (diff)
downloadhomebrew-329e627da0a9d4cb652b9f07d1888a1fbf7bd55d.tar.bz2
shivavg: modernize autotools deps
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/shivavg.rb18
1 files changed, 9 insertions, 9 deletions
diff --git a/Library/Formula/shivavg.rb b/Library/Formula/shivavg.rb
index 128890df5..5c882aaf5 100644
--- a/Library/Formula/shivavg.rb
+++ b/Library/Formula/shivavg.rb
@@ -1,17 +1,17 @@
-require 'formula'
+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'
+ 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
- depends_on :autoconf
- depends_on :libtool
+ depends_on "automake" => :build
+ depends_on "autoconf" => :build
+ depends_on "libtool" => :build
def install
- system "autoreconf", "-ivf"
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ system "/bin/sh", "autogen.sh"
+ system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-example-all=no"
system "make", "install"