aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2014-05-23 11:11:44 -0700
committerAdam Vandenberg2014-05-23 11:11:58 -0700
commitadd03c0a56576863b3931f7780c9e6cfd0268fae (patch)
tree18214bcefd4378fe4489eec51bc962efe8120273 /Library
parent6d93c01773b2508f4c1d726d96921b8828da22da (diff)
downloadhomebrew-add03c0a56576863b3931f7780c9e6cfd0268fae.tar.bz2
yarp: quotes
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/yarp.rb33
1 files changed, 16 insertions, 17 deletions
diff --git a/Library/Formula/yarp.rb b/Library/Formula/yarp.rb
index bf9ebf274..780b9eceb 100644
--- a/Library/Formula/yarp.rb
+++ b/Library/Formula/yarp.rb
@@ -1,22 +1,21 @@
-require 'formula'
+require "formula"
class Yarp < Formula
- homepage 'http://yarp.it'
- url 'https://github.com/robotology/yarp/archive/v2.3.62.tar.gz'
- sha1 '148fc9d77cc4b68119c31066b452e9607de0f066'
+ homepage "http://yarp.it"
+ head "https://github.com/robotology/yarp.git"
+ url "https://github.com/robotology/yarp/archive/v2.3.62.tar.gz"
+ sha1 "148fc9d77cc4b68119c31066b452e9607de0f066"
- head 'https://github.com/robotology/yarp.git'
-
- depends_on 'pkg-config' => :build
- depends_on 'cmake' => :build
- depends_on 'ace'
- depends_on 'gsl'
- depends_on 'gtk+'
- depends_on 'gtkmm'
- depends_on 'libglademm'
- depends_on 'sqlite'
- depends_on 'readline'
- depends_on 'jpeg'
+ depends_on "pkg-config" => :build
+ depends_on "cmake" => :build
+ depends_on "ace"
+ depends_on "gsl"
+ depends_on "gtk+"
+ depends_on "gtkmm"
+ depends_on "libglademm"
+ depends_on "sqlite"
+ depends_on "readline"
+ depends_on "jpeg"
depends_on :x11
def install
@@ -41,7 +40,7 @@ class Yarp < Formula
.]
system "cmake", *args
- system "make install"
+ system "make", "install"
end
test do