2011-09-15 13:05:25 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ape < Formula
|
|
|
|
homepage 'http://www.ape-project.org/'
|
|
|
|
url 'https://github.com/APE-Project/APE_Server/tarball/v1.1.0'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'ffecd63073a2239a144d5222fd1cd56cda411903'
|
2011-09-15 13:05:25 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./build.sh"
|
|
|
|
system "make", "install", "prefix=#{prefix}"
|
|
|
|
end
|
|
|
|
end
|