diff options
| author | Luis Felipe Strano Moraes | 2011-10-28 14:51:43 -0200 |
|---|---|---|
| committer | Jack Nagel | 2011-11-07 17:07:11 -0600 |
| commit | 681116218f772084abfd344bd4bd5a646f184bc9 (patch) | |
| tree | 99042860c66749b5574d80adc94d0c2e0f400d26 /Library/Formula | |
| parent | 11d928312cfbeaee465bed4537823d689f3fa8c5 (diff) | |
| download | homebrew-681116218f772084abfd344bd4bd5a646f184bc9.tar.bz2 | |
New formula: Eet
Adding new library called Eet for data serialization, encoding and
access. It is used as a really fast database in several applications
that use the EFL, as well as other libraries from the set.
Closes #8342.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/eet.rb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Library/Formula/eet.rb b/Library/Formula/eet.rb new file mode 100644 index 000000000..16f3aed53 --- /dev/null +++ b/Library/Formula/eet.rb @@ -0,0 +1,23 @@ +require 'formula' + +class Eet < Formula + url 'http://download.enlightenment.org/releases/eet-1.4.1.tar.gz' + homepage 'http://trac.enlightenment.org/e/wiki/Eet' + md5 '88d126fce01dc1330a1e798d9063aba1' + head 'http://svn.enlightenment.org/svn/e/trunk/eet/', :using => :svn + + depends_on 'pkg-config' => :build + depends_on 'eina' + depends_on 'jpeg' + depends_on 'lzlib' + + def install + # hack to allow building with current trunk, will be made obsolete after 1.1 + # is released: http://comments.gmane.org/gmane.comp.window-managers.enlightenment.devel/30780 + inreplace 'configure.ac', 'm4_define([v_mic], [999])', 'm4_define([v_mic], [99])' if ARGV.build_head? + system "./autogen.sh" if ARGV.build_head? + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
