homebrew-core/Formula/burp.rb
2018-05-01 05:07:55 -07:00

96 lines
2.5 KiB
Ruby

class Burp < Formula
desc "Network backup and restore"
homepage "https://burp.grke.org/"
stable do
url "https://downloads.sourceforge.net/project/burp/burp-2.1.32/burp-2.1.32.tar.bz2"
sha256 "56f8a13ae96e50f2274857a08c9f3d9f06ed6dee306d49fd189e3ff9f93c74fd"
resource "uthash" do
url "https://github.com/troydhanson/uthash.git",
:revision => "1048ed82f22fe57f1e139821ae3a3ce6a52f1002"
end
end
bottle do
sha256 "63448a114768888ecf29a7e43dc47bfa7d6bf8dcf29100dd686427c767d5c1f1" => :high_sierra
sha256 "7227edca3f5ccc37bb27c129f6191440341f1d6513a720a45d0132aae52f2a69" => :sierra
sha256 "327c71e933b05d212cc522748e4928b52da9c968f7f2ca50cee31a7ec99add0b" => :el_capitan
end
head do
url "https://github.com/grke/burp.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
resource "uthash" do
url "https://github.com/troydhanson/uthash.git"
end
end
depends_on "pkg-config" => :build
depends_on "librsync"
depends_on "openssl"
def install
resource("uthash").stage do
(buildpath/"uthash/include").install "src/uthash.h"
end
ENV.prepend "CPPFLAGS", "-I#{buildpath}/uthash/include"
system "autoreconf", "-fiv" if build.head?
system "./configure", "--prefix=#{prefix}",
"--sysconfdir=#{etc}/burp",
"--sbindir=#{bin}",
"--localstatedir=#{var}"
system "make", "install-all"
end
def post_install
(var/"run").mkpath
(var/"spool/burp").mkpath
end
def caveats; <<~EOS
Before installing the launchd entry you should configure your burp client in
#{etc}/burp/burp.conf
EOS
end
plist_options :startup => true
def plist; <<~EOS
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>UserName</key>
<string>root</string>
<key>KeepAlive</key>
<false/>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/burp</string>
<string>-a</string>
<string>t</string>
</array>
<key>StartInterval</key>
<integer>1200</integer>
<key>WorkingDirectory</key>
<string>#{HOMEBREW_PREFIX}</string>
</dict>
</plist>
EOS
end
test do
system bin/"burp", "-v"
end
end