diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/ape.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/ape.rb b/Library/Formula/ape.rb new file mode 100644 index 000000000..e7e071cf3 --- /dev/null +++ b/Library/Formula/ape.rb @@ -0,0 +1,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 |
