16 lines
412 B
Ruby
16 lines
412 B
Ruby
|
require 'formula'
|
||
|
|
||
|
class Daemonize <Formula
|
||
|
url 'https://github.com/bmc/daemonize/tarball/release-1.6.1'
|
||
|
homepage 'http://software.clapper.org/daemonize/'
|
||
|
md5 'bee4b67382f9969cae72b06038a4ae8e'
|
||
|
version '1.6.1'
|
||
|
|
||
|
def install
|
||
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||
|
"--prefix=#{prefix}"
|
||
|
system "make"
|
||
|
system "make install"
|
||
|
end
|
||
|
end
|