aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/eina.rb
blob: 9d94e17011e2171511755023d140b11f152056c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Eina < Formula
  url 'http://download.enlightenment.org/releases/eina-1.1.0.tar.gz'
  homepage 'http://trac.enlightenment.org/e/wiki/Eina'
  md5 'fedb3814427827c1bb777edea3c86298'
  head 'http://svn.enlightenment.org/svn/e/trunk/eina/', :using => :svn

  depends_on 'pkg-config' => :build

  def install
    system "./autogen.sh" if ARGV.build_head?
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end