aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAlexander Simonov2011-09-15 16:05:25 +0300
committerAdam Vandenberg2012-02-19 15:25:36 -0800
commit96a376431489929f60515b2bcfd700bcf958a188 (patch)
tree0266f0d9c62c755ae6af8636cc48857fc5469721 /Library
parent986abfe2f41b981edb1fa9e58d15428868c74d25 (diff)
downloadhomebrew-96a376431489929f60515b2bcfd700bcf958a188.tar.bz2
APE 1.1.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ape.rb12
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