aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Höppner2011-02-10 10:22:15 +0100
committerDavid Höppner2011-02-10 10:22:15 +0100
commitb9699b64088991b2da1a43cf3b80b24daa123804 (patch)
treefa51c5d1bca0ec13b1192cafede4fab95e571406 /Library/Formula
parent28333a318b70d963fc665035c55e2ada37afcfba (diff)
downloadhomebrew-b9699b64088991b2da1a43cf3b80b24daa123804.tar.bz2
New formula recutils
GNU Recutils is a set of tools and libraries to access human-editable, text-based databases called recfiles. The data is stored as a sequence of records, each record containing an arbitrary number of named fields. Signed-off-by: David Höppner <0xffea@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/recutils.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/recutils.rb b/Library/Formula/recutils.rb
new file mode 100644
index 000000000..7c441c3a7
--- /dev/null
+++ b/Library/Formula/recutils.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Recutils <Formula
+ url 'http://ftp.gnu.org/gnu/recutils/recutils-1.2.tar.gz'
+ homepage 'http://www.gnu.org/software/recutils/'
+ md5 '4cd6244a129f7318c4ee4a7461ff9050'
+
+ # depends_on 'cmake'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end