blob: 49a8b2e6f8d61d14eedfa7933ce13aac9fdc9a8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Adns < Formula
url 'http://ftpmirror.gnu.org/adns/adns-1.3.tar.gz'
mirror 'http://ftp.gnu.org/gnu/adns/adns-1.3.tar.gz'
homepage 'http://www.chiark.greenend.org.uk/~ian/adns/'
md5 'd19cddcc11ce3183549bab7f136e0f73'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-dynamic"
system "make"
system "make install"
end
end
|