blob: 87421777651027d73b39f32f0549b788e1630944 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
|