homebrew-cask-versions/brew-cask.rb
Paul Hinze 7ee9b1ec84 bumping version to v0.16.2
to release past the typo
2013-09-14 22:49:53 -05:00

21 lines
535 B
Ruby

require 'formula'
HOMEBREW_CASK_VERSION = '0.16.2'
class BrewCask < Formula
homepage 'https://github.com/phinze/homebrew-cask/'
url 'https://github.com/phinze/homebrew-cask.git', :tag => "v#{HOMEBREW_CASK_VERSION}"
version HOMEBREW_CASK_VERSION
head 'https://github.com/phinze/homebrew-cask.git', :branch => 'master'
skip_clean 'bin'
def install
prefix.install 'lib' => 'rubylib'
inreplace 'bin/brew-cask.rb', '/lib', '/rubylib'
prefix.install 'Casks', 'bin'
(bin+'brew-cask.rb').chmod 0755
end
end