aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorKaspar Schiess2011-01-12 15:48:37 +0100
committerMike McQuaid2011-01-16 15:25:51 +0000
commit0eef42c322c4deb2e986293cdf4e6d6e3f06d1c6 (patch)
treedb6960bc84950dc4675af8516fa9f821651d51a8 /Library
parent64d10ab89087721021cd88595e27869687b91fb3 (diff)
downloadhomebrew-0eef42c322c4deb2e986293cdf4e6d6e3f06d1c6.tar.bz2
+ dar, the Disk ARchive
Version 2.3.10 from http://dar.linux.free.fr/. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/dar.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/dar.rb b/Library/Formula/dar.rb
new file mode 100644
index 000000000..d56d5850b
--- /dev/null
+++ b/Library/Formula/dar.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Dar <Formula
+ url 'http://downloads.sourceforge.net/project/dar/dar/2.3.10/dar-2.3.10.tar.gz'
+ homepage 'http://dar.linux.free.fr/doc/index.html'
+ md5 'f134276bb9dc761dbb318c5511e65833'
+
+ depends_on 'gettext'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}", "--mandir=#{man1}",
+ "--disable-build-html"
+ system "make install"
+ end
+end