3ad9a0896f
The `brew audit` check complains about the older /tarball/ URL scheme. Update formulae to use the new /archive/ URL and update the SHA to match. Closes Homebrew/homebrew#18813. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
411 B
Ruby
14 lines
411 B
Ruby
require 'formula'
|
|
|
|
class Daemonize < Formula
|
|
homepage 'http://software.clapper.org/daemonize/'
|
|
url 'https://github.com/bmc/daemonize/archive/release-1.7.4.tar.gz'
|
|
sha1 '25465f696108f9e112039c9363aff8c798191789'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|