blob: 93dd1446f007c4eda546e28da197da49552961ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class WaitOn < Formula
homepage 'http://www.freshports.org/sysutils/wait_on/'
url 'http://distcache.freebsd.org/ports-distfiles/wait_on-1.1.tar.gz'
sha1 '9e3fb51b6324f5aca7664fb8165f61a52bd5bd61'
depends_on "bsdmake" => :build
def install
system "bsdmake"
bin.install 'wait_on'
man1.install 'wait_on.1.gz'
end
test do
system "#{bin}/wait_on", "-v"
end
end
|