homebrew-cask/Casks/calibre.rb

44 lines
1.9 KiB
Ruby
Raw Normal View History

2015-12-18 09:15:28 +08:00
cask 'calibre' do
2016-08-08 03:12:48 +08:00
if MacOS.version <= :lion
version '1.48.0'
sha256 '0533283965fbc9a6618d0b27c85bdf3671fe75ff0e89eeff406fe1457ee61b14'
else
2016-10-15 01:39:04 +08:00
version '2.70.0'
sha256 '08a6aee3abb5eb71fe36de91db0ec5393eb52850cacb80d3fc557425eac1a043'
2015-12-26 04:57:40 +08:00
appcast 'https://github.com/kovidgoyal/calibre/releases.atom',
2016-10-15 01:30:04 +08:00
checkpoint: '67980993effbfe0d585b55a6a7a5cbd6209db5df3032db65e819b43be038f803'
end
2016-01-12 16:14:42 +08:00
url "https://download.calibre-ebook.com/#{version}/calibre-#{version}.dmg"
2015-02-28 23:44:37 +08:00
name 'calibre'
2016-01-12 16:14:42 +08:00
homepage 'https://calibre-ebook.com/'
2014-09-16 00:05:21 +08:00
app 'calibre.app'
[WIP] Change artifact behavior to moving instead of symlinking (#13966) * Change app artifact to move instead of link First step towards change in installation behavior mentioned in [13201] * Fix handling of binaries linked from inside of app bundles Also adds `appdir` method for interpolation in stanzas * Change appdir to root Applications directory * Update 2-app tests * Refactor: add options, ivars to `Installer`, `Download` In preparation for upcoming changes, this commit cleans up some code. The commit includes: - In order to reduce unnecessary object passing, make both the `force` and `skip_cask_deps` option into instance variables of the `Installer` class - Introduce options hashes to initializers of both the `Installer` and `Download` class - When the `install --force` command enters the fetch phase, make it explicit in the code that fetching is never enforced in that case. - Update tests * Force overwrite artifacts on `--force` reinstall This commit changes the behavior of a `Moved` artifact such that if the target already exists, `brew cask install --force` will remove the existing target before moving the staged artifact. In that case, the warning message will say *overwriting* instead of *not moving*. The behavior of plain `brew cask install` remains unchanged; the same goes for the warning message for that case. * Change remaining artifacts to move instead of symlink * Update casks to use appdir in binary paths * Forcibly overwrite artifacts, modifying flags and using `sudo` if needed - This commit implements [the proposed behavior for `install --force`](https://github.com/caskroom/homebrew-cask/pull/13966#issuecomment-220830387) when a target already exists and has either permission problems or is not owned by the user. - The changes apply only when the `force` option is given. - Reused the existing safeguard from the `.pkg` artifact to prevent deleting important directories by bug or mistake - The two existing blacklists `SYSTEM_DIRS` and `UNDELETABLE_DIRS` have been consolidated into the `Hbc::MacOS` module. - `UNDELETABLE_DIRS` now also contains all the entries from `SYSTEM_DIRS` which was a to-do anyway. - The two blacklists are now also frozen for good measure. - The utility method `permissions_rmtree` was moved to `Hbc::Utils`. - The `tried_permissions` part in `Utils` now falls back correctly when there are also ownership issues at the same time. - Introduced a separate `current_user` method for mocking. - Added an optional feature to `FakeSystemCommand` so it can now act as a proxy to `SystemCommand`. - Added tests for various `permissions_rmtree` cases.
2016-06-01 03:23:21 +08:00
binary "#{appdir}/calibre.app/Contents/MacOS/calibre"
binary "#{appdir}/calibre.app/Contents/MacOS/calibre-complete"
binary "#{appdir}/calibre.app/Contents/MacOS/calibre-customize"
binary "#{appdir}/calibre.app/Contents/MacOS/calibre-debug"
binary "#{appdir}/calibre.app/Contents/MacOS/calibre-parallel"
binary "#{appdir}/calibre.app/Contents/MacOS/calibre-server"
binary "#{appdir}/calibre.app/Contents/MacOS/calibre-smtp"
binary "#{appdir}/calibre.app/Contents/MacOS/calibredb"
binary "#{appdir}/calibre.app/Contents/MacOS/ebook-convert"
binary "#{appdir}/calibre.app/Contents/MacOS/ebook-device"
binary "#{appdir}/calibre.app/Contents/MacOS/ebook-edit"
binary "#{appdir}/calibre.app/Contents/MacOS/ebook-meta"
binary "#{appdir}/calibre.app/Contents/MacOS/ebook-polish"
binary "#{appdir}/calibre.app/Contents/MacOS/ebook-viewer"
binary "#{appdir}/calibre.app/Contents/MacOS/fetch-ebook-metadata"
binary "#{appdir}/calibre.app/Contents/MacOS/lrf2lrs"
binary "#{appdir}/calibre.app/Contents/MacOS/lrfviewer"
binary "#{appdir}/calibre.app/Contents/MacOS/lrs2lrf"
binary "#{appdir}/calibre.app/Contents/MacOS/markdown-calibre"
binary "#{appdir}/calibre.app/Contents/MacOS/web2disk"
2015-10-14 23:29:52 +08:00
zap delete: [
'~/Library/Preferences/net.kovidgoyal.calibre.plist',
'~/Library/Preferences/calibre',
'~/Library/Caches/calibre',
]
2013-05-08 01:04:43 +08:00
end