Skip to content

Commit

Permalink
evas 1.7.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jacknagel committed Nov 14, 2014
1 parent 33a1eb9 commit 39bbb56
Showing 1 changed file with 17 additions and 19 deletions.
36 changes: 17 additions & 19 deletions 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

0 comments on commit 39bbb56

Please sign in to comment.