You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
468 B
19 lines
468 B
require 'formula'
|
|
|
|
class BrewCask < Formula
|
|
homepage 'https://github.com/phinze/homebrew-cask/'
|
|
url 'https://github.com/phinze/homebrew-cask.git', :tag => 'v0.3.7'
|
|
version '0.3.7'
|
|
|
|
head 'https://github.com/phinze/homebrew-cask.git', :branch => 'master'
|
|
|
|
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
|
|
|