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