elementary 1.14.0 (new formula)
Adds the 'efl' based widget toolkit called 'elementary' Elementary is based on top of the Enlightenment Foundation Libraries (efl). It provides a set of common widgets for the development of user interfaces. Ref Homebrew/homebrew#38637. Signed-off-by: Tim D. Smith <git@tim-smith.us>
This commit is contained in:
parent
99b4e75e2e
commit
80c0a7c8ac
1 changed files with 20 additions and 0 deletions
20
Formula/elementary.rb
Normal file
20
Formula/elementary.rb
Normal file
|
@ -0,0 +1,20 @@
|
|||
class Elementary < Formula
|
||||
homepage "https://www.enlightenment.org"
|
||||
url "http://download.enlightenment.org/rel/libs/elementary/elementary-1.14.0.tar.gz"
|
||||
sha256 "aa06ca1b332b3cd29ffd136c1f10edf08a06906b3532785ce7e390c1cad6090e"
|
||||
|
||||
depends_on "pkg-config" => :build
|
||||
depends_on "efl"
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug",
|
||||
"--disable-dependency-tracking",
|
||||
"--disable-silent-rules",
|
||||
"--prefix=#{prefix}"
|
||||
system "make", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
system "#{bin}/elementary_codegen", "-V"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue