mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
17 lines
393 B
Ruby
17 lines
393 B
Ruby
require 'formula'
|
|
|
|
class BrewCask < Formula
|
|
homepage 'https://github.com/phinze/homebrew-cask/'
|
|
url 'https://github.com/phinze/homebrew-cask.git', :tag => 'v0.2.0'
|
|
version '0.2.0'
|
|
|
|
skip_clean 'bin'
|
|
|
|
def install
|
|
prefix.install_p 'lib', 'rubylib'
|
|
inreplace 'bin/brew-cask.rb', '/lib', '/rubylib'
|
|
|
|
prefix.install 'Casks', 'bin'
|
|
(bin+'brew-cask.rb').chmod 0755
|
|
end
|
|
end
|