forked from necromant2005/homebrew-boneyard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevas.rb
25 lines (22 loc) · 866 Bytes
/
evas.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class Evas < Formula
desc "Display canvas API that implements a scene graph"
homepage "https://docs.enlightenment.org/auto/eet/evas_main.html"
url "https://download.enlightenment.org/releases/evas-1.7.10.tar.gz"
sha256 "9c6c8679608ab0f2aa78e83f2ac1f9133d5bb615dabd5491bbbd30fcec4fc82b"
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 "doxygen" => :build if build.with? "docs"
def install
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
system "make", "install-doc" if build.with? "docs"
end
end