blob: 79ecee400be20a140c6930ca6d6b8f7fe5cf1355 (
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
  def test
    system "#{bin}/daemon", "--version"
  end
end
  |