aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMark A. Matienzo2010-09-20 16:02:55 -0400
committerAdam Vandenberg2010-09-20 15:14:28 -0700
commitd123b41f230602bd721eb1c41b4b9b189de684c3 (patch)
tree500d529a30c9747cc09fe5ac790c75e99f14adc5 /Library/Formula
parente9aebb3b1dfb35acd58150f072d1ea7484536972 (diff)
downloadhomebrew-d123b41f230602bd721eb1c41b4b9b189de684c3.tar.bz2
New formula: afflib
AFFLIB is an open source implementation of the Advanced Forensic Format written in C. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/afflib.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/afflib.rb b/Library/Formula/afflib.rb
new file mode 100644
index 000000000..45a1aa5c7
--- /dev/null
+++ b/Library/Formula/afflib.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Afflib <Formula
+ url 'http://afflib.org/downloads/afflib-3.6.2.tar.gz'
+ homepage 'http://afflib.org'
+ md5 'c30468c762c8e06776410ca8fb56b782'
+
+ depends_on 'expat'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end