mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-16 14:26:53 -06:00
I tried installing the original wordservice cask and I got this error: Error: It seems the symlink source is not there: '/opt/homebrew-cask/Caskroom/wordservice/2.8.1/WordService/WordService.service' After unzipping the download manually I saw that it was no longer a "service" extension, so I made the update to the formula.
11 lines
523 B
Ruby
11 lines
523 B
Ruby
cask :v1 => 'wordservice' do
|
|
version '2.8.1'
|
|
sha256 'c8085d93400ee60d103225fbaa53409fe66b8c92afe6cda05ca74916562c3a92'
|
|
|
|
# amazonaws.com is the official download host per the vendor homepage
|
|
url "https://s3.amazonaws.com/DTWebsiteSupport/download/freeware/wordservice/#{version}/WordService.zip"
|
|
homepage 'http://www.devontechnologies.com/products/freeware.html#c1115'
|
|
license :unknown # todo: change license and remove this comment; ':unknown' is a machine-generated placeholder
|
|
|
|
app 'WordService.app'
|
|
end
|