blob: f8b90fc57f9f6b11d5cc4f23d9d2df9985e1e06f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Recutils < Formula
url 'http://ftpmirror.gnu.org/recutils/recutils-1.3.tar.gz'
homepage 'http://www.gnu.org/software/recutils/'
md5 '243d46f191cbbf2be3fd72a86234cd1c'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|