77c73ecb89
Some of these were pointing at archive.apache.org. Now they aren’t, I investigated for good rationale for using the archive before altering it. mod_python still uses archive.apache.org as that is the only place it exists that I could find. jsvc *now* uses apache.archive.org as the formula was otherwise broken and the binary tarball it needs no longer exists on the main mirrors.
12 lines
338 B
Ruby
12 lines
338 B
Ruby
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
|