blob: 63123235cd628a71496f1dcb21db58d2c274cefb (
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/'
sha1 'fa6298f05f868d54660a7ed70c05fb7a0963a24b'
def install
system "./config"
system "make"
system "make", "PREFIX=#{prefix}", "install"
end
def test
system "#{bin}/daemon", "--version"
end
end
|