fb2e520b3a
Closes Homebrew/homebrew#34553. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
13 lines
350 B
Ruby
13 lines
350 B
Ruby
require 'formula'
|
|
|
|
class VirtualhostSh < Formula
|
|
homepage 'https://github.com/virtualhost/virtualhost.sh'
|
|
url 'https://github.com/virtualhost/virtualhost.sh/archive/1.34.tar.gz'
|
|
sha1 '0f4a547b64b85e6b4547b865d30ab52c1f49cfd3'
|
|
|
|
head 'https://github.com/virtualhost/virtualhost.sh.git'
|
|
|
|
def install
|
|
bin.install 'virtualhost.sh'
|
|
end
|
|
end
|