aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2014-08-24 17:08:29 +0100
committerMike McQuaid2014-08-24 17:14:20 +0100
commit4f48b988637796ad29181b601008205af503c92c (patch)
tree28b6718e542fe4dd816ae0a7effc2248a0073ad6 /Library/Formula
parent2309133ee0adb2bef95f0ddea1fa9ebe15f38884 (diff)
downloadhomebrew-4f48b988637796ad29181b601008205af503c92c.tar.bz2
liblacewing: use double-quotes, "make", "install".
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/liblacewing.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Formula/liblacewing.rb b/Library/Formula/liblacewing.rb
index 04d64edbf..00ab7533b 100644
--- a/Library/Formula/liblacewing.rb
+++ b/Library/Formula/liblacewing.rb
@@ -1,10 +1,10 @@
-require 'formula'
+require "formula"
class Liblacewing < Formula
- homepage 'http://lacewing-project.org/'
- head 'https://github.com/udp/lacewing.git'
- url 'https://github.com/udp/lacewing/archive/0.5.4.tar.gz'
- sha1 '078486a4dcd6ce33c2c881954c5dc82843411ac9'
+ homepage "http://lacewing-project.org/"
+ head "https://github.com/udp/lacewing.git"
+ url "https://github.com/udp/lacewing/archive/0.5.4.tar.gz"
+ sha1 "078486a4dcd6ce33c2c881954c5dc82843411ac9"
revision 1
bottle do
@@ -15,11 +15,11 @@ class Liblacewing < Formula
end
# Use a newer OpenSSL to get SPDY support
- depends_on 'openssl'
+ depends_on "openssl"
def install
system "./configure", "--prefix=#{prefix}"
system "make"
- system "make install"
+ system "make", "install"
end
end