blob: 450b2a6f9464d612ff81075d7ab0b9f73b13f875 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
require "formula"
class Gdnsd < Formula
homepage "http://gdnsd.org/"
url "https://github.com/gdnsd/gdnsd/releases/download/v2.1.0/gdnsd-2.1.0.tar.xz"
sha1 "138c7542005de457e756bf84fd7f727d690efe56"
bottle do
sha1 "72e912a4de41afda8ea8b806086c7291c308e72c" => :yosemite
sha1 "ef4d3d7b6c0a7eab61ac4b2ae1f188a2eaec0e37" => :mavericks
sha1 "5acbc203b2687aec9c2506906172122a680133f5" => :mountain_lion
end
head do
url "https://github.com/gdnsd/gdnsd.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
depends_on "libev"
depends_on "ragel"
depends_on "libunwind-headers" => :recommended
def install
system "autoreconf", "-fvi" if build.head?
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}",
"--with-rundir=#{var}/run",
"--localstatedir=#{var}",
"--sysconfdir=#{etc}",
"--without-urcu"
system "make", "install"
end
test do
(testpath/"config").write("options => { listen => [ 127.0.0.1 ] }")
system "#{sbin}/gdnsd", "-c", testpath, "checkconf"
end
end
|