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:
parent
5cf7d64e00
commit
728e605390
1 changed files with 15 additions and 0 deletions
15
Formula/recutils.rb
Normal file
15
Formula/recutils.rb
Normal 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
|
Loading…
Reference in a new issue