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>
This commit is contained in:
David Höppner 2011-02-10 10:22:15 +01:00
parent 5cf7d64e00
commit 728e605390

15
Formula/recutils.rb Normal file
View file

@ -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