30 lines
818 B
Ruby
30 lines
818 B
Ruby
require 'formula'
|
|
|
|
class Eina < Formula
|
|
homepage 'http://trac.enlightenment.org/e/wiki/Eina'
|
|
url 'http://download.enlightenment.org/releases/eina-1.7.9.tar.gz'
|
|
sha1 '26f385e888b29876c8fb06f35f0433ab7e3251d5'
|
|
|
|
bottle do
|
|
sha1 "93a7d9b07e718f429b3d93f3e9143d8108f944ef" => :yosemite
|
|
sha1 "ae012b17e012a4c628bfa794b56a4c3631e83f4c" => :mavericks
|
|
sha1 "40d088362766ee5cbec76517e3fb3e128d2a4738" => :mountain_lion
|
|
end
|
|
|
|
head do
|
|
url 'http://svn.enlightenment.org/svn/e/trunk/eina/'
|
|
|
|
depends_on :autoconf
|
|
depends_on :automake
|
|
depends_on :libtool
|
|
end
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
def install
|
|
system "./autogen.sh" if build.head?
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|