blob: 3ffb428fcecf272b6b44a142312971eb86ae8c8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Jsvc < Formula
version '1.0.5'
homepage 'http://commons.apache.org/daemon/jsvc.html'
url "http://archive.apache.org/dist/commons/daemon/binaries/#{version}/darwin/commons-daemon-#{version}-bin-darwin-universal.tar.gz"
md5 '1d5f4b81e5ac18da0d58af421bc3c139'
def install
bin.install 'jsvc'
end
end
|