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

class Ape < Formula
  homepage 'http://www.ape-project.org/'
  url 'https://github.com/APE-Project/APE_Server/archive/v1.1.0.tar.gz'
  sha1 '5543822a0455f59ae249a85740d8d040bb8c03cf'

  fails_with :clang do
    build 425
    cause 'multiple configure and compile errors'
  end

  def install
    system "./build.sh"
    system "make", "install", "prefix=#{prefix}"
  end
end