blob: f7d930b3de411c7ffb9b0ffa4f0a00758c24ce1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Daemon < Formula
url 'http://libslack.org/daemon/download/daemon-0.6.4.tar.gz'
homepage 'http://libslack.org/daemon/'
md5 '6cd0a28630a29ac279bc501f39baec66'
def install
system "./config"
system "make"
system "make", "PREFIX=#{prefix}", "install"
end
def test
system "#{bin}/daemon", "--version"
end
end
|