aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2014-09-09 12:48:41 +0100
committerMike McQuaid2014-09-09 12:49:30 +0100
commit4f87d156a4abb53ab20064ff88fe43a5ef6c4f38 (patch)
tree0efb2979b5f24ffec3a2d0f7def8c45e96c1d95d /Library/Formula
parent7abda12772b247c66942ea5301168d6dffb9dc9b (diff)
downloadhomebrew-4f87d156a4abb53ab20064ff88fe43a5ef6c4f38.tar.bz2
exempi: general cleanup
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/exempi.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/exempi.rb b/Library/Formula/exempi.rb
index f839304a4..e065e7dd4 100644
--- a/Library/Formula/exempi.rb
+++ b/Library/Formula/exempi.rb
@@ -1,9 +1,9 @@
-require 'formula'
+require "formula"
class Exempi < Formula
- homepage 'http://libopenraw.freedesktop.org/wiki/Exempi'
- url 'http://libopenraw.freedesktop.org/download/exempi-2.2.2.tar.bz2'
- sha1 'c0a0014e18f05aa7fac210c84788ef073718a9d8'
+ homepage "http://libopenraw.freedesktop.org/wiki/Exempi"
+ url "http://libopenraw.freedesktop.org/download/exempi-2.2.2.tar.bz2"
+ sha1 "c0a0014e18f05aa7fac210c84788ef073718a9d8"
bottle do
cellar :any
@@ -12,12 +12,12 @@ class Exempi < Formula
sha1 "9d047f2558f28bfa9e008e4f4ec11939b74ec99d" => :lion
end
- depends_on 'boost'
+ depends_on "boost"
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-boost=#{HOMEBREW_PREFIX}"
- system "make install"
+ system "make", "install"
end
end