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

class Ape < Formula
  homepage 'http://www.ape-project.org/'
  url 'https://github.com/APE-Project/APE_Server/tarball/v1.1.0'
  md5 '8e2d75bc558aa908e18c6765fc65eb53'

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