aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Shere2011-08-14 17:48:31 -0700
committerAdam Vandenberg2011-08-19 10:03:59 -0700
commit12f88d66db31f432780644ffc2c805fadccf6652 (patch)
tree9d455ea1e583ab5e04cbba577926ea187318a9ac /Library/Formula
parent34ba5033aeb2b8dd529d07d0a7a961f85a144af0 (diff)
downloadhomebrew-12f88d66db31f432780644ffc2c805fadccf6652.tar.bz2
avra 1.3.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/avra.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/avra.rb b/Library/Formula/avra.rb
new file mode 100644
index 000000000..ea44a4d70
--- /dev/null
+++ b/Library/Formula/avra.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Avra < Formula
+ url 'http://sourceforge.net/projects/avra/files/1.3.0/avra-1.3.0.tar.bz2'
+ homepage 'http://avra.sourceforge.net/'
+ md5 'd5d48369ceaa004c4ca09f61f69b2c84'
+
+ def install
+ # build fails if these don't exist
+ system "touch NEWS ChangeLog"
+ Dir.chdir "src" do
+ system "./bootstrap"
+ system "./configure --prefix=#{prefix}"
+ system "make install"
+ end
+ end
+end