aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJay Yu2013-05-08 12:13:59 +1000
committerAdam Vandenberg2013-11-10 11:03:52 -0800
commit677f6d4cb4d6e7986ffa1ab1b67037c4d06ce418 (patch)
tree13a2e4dfb1314952bd08f457b5fd3358b9bcb4ed /Library
parenta0c47cd141e6c53fd197937f11339b3780d42dcc (diff)
downloadhomebrew-677f6d4cb4d6e7986ffa1ab1b67037c4d06ce418.tar.bz2
snapraid 4.4
Closes #19669.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/snapraid.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/snapraid.rb b/Library/Formula/snapraid.rb
new file mode 100644
index 000000000..adf40e0ce
--- /dev/null
+++ b/Library/Formula/snapraid.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Snapraid < Formula
+ homepage 'http://snapraid.sourceforge.net/'
+ head 'git://snapraid.git.sourceforge.net/gitroot/snapraid/snapraid'
+ url 'http://downloads.sourceforge.net/project/snapraid/snapraid-4.4.tar.gz'
+ sha1 '28c73b431c4fca78194bbfa484bbf0f5f20db17c'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make"
+ system "make", "install"
+ end
+end