aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-11-14 17:25:07 -0600
committerJack Nagel2014-11-14 17:25:07 -0600
commit99f3f73f7a588bb641f7cd8d7a60adc0005da709 (patch)
tree00fa52403412d196a2265f338d0b91d1d21eb292 /Library
parentc509bbf183738259add21156d3b69fedbd15ea5d (diff)
downloadhomebrew-99f3f73f7a588bb641f7cd8d7a60adc0005da709.tar.bz2
evas 1.7.10
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/evas.rb36
1 files changed, 17 insertions, 19 deletions
diff --git a/Library/Formula/evas.rb b/Library/Formula/evas.rb
index 5b6f31de5..a0805b04e 100644
--- a/Library/Formula/evas.rb
+++ b/Library/Formula/evas.rb
@@ -1,28 +1,26 @@
-require 'formula'
+require "formula"
class Evas < Formula
- homepage 'http://trac.enlightenment.org/e/wiki/Evas'
- url 'http://download.enlightenment.org/releases/evas-1.7.9.tar.gz'
- sha1 '5804cf35451f4e05185b6ae9103b0390c0dfed5d'
+ homepage "http://trac.enlightenment.org/e/wiki/Evas"
+ url "http://download.enlightenment.org/releases/evas-1.7.10.tar.gz"
+ sha1 "ad1002eded75ea0e90d80b3b6813b3278d9f4228"
- option 'with-docs', 'Install development libraries/headers and HTML docs'
+ option "with-docs", "Install development libraries/headers and HTML docs"
- depends_on 'pkg-config' => :build
- depends_on 'eina'
- depends_on 'eet'
- depends_on 'freetype'
- depends_on 'fontconfig'
- depends_on 'fribidi'
- depends_on 'harfbuzz'
+ depends_on "pkg-config" => :build
+ depends_on "eina"
+ depends_on "eet"
+ depends_on "freetype"
+ depends_on "fontconfig"
+ depends_on "fribidi"
+ depends_on "harfbuzz"
depends_on "doxygen" => :build if build.with? "docs"
def install
- args = ["--prefix=#{prefix}", "--disable-dependency-tracking"]
- args << "--with-doxygen-file=#{HOMEBREW_PREFIX}/bin/doxygen" if build.with? "docs"
-
- system "./configure", *args
-
- system "make install"
- system "make install-doc" if build.with? "docs"
+ system "./configure", "--disable-dependency-tracking",
+ "--disable-silent-rules",
+ "--prefix=#{prefix}"
+ system "make", "install"
+ system "make", "install-doc" if build.with? "docs"
end
end