mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
Merge pull request #1579 from uberhacker/add-has-package
Add has package
This commit is contained in:
18
packages/has.rb
Normal file
18
packages/has.rb
Normal file
@@ -0,0 +1,18 @@
|
||||
require 'package'
|
||||
|
||||
class Has < Package
|
||||
description 'checks presence of various command line tools and their versions on the path'
|
||||
homepage 'https://github.com/kdabir/has'
|
||||
version '1.1.0'
|
||||
source_url 'https://github.com/kdabir/has/archive/v1.1.0.tar.gz'
|
||||
source_sha256 'e06d9674bc1b9281c1d4391ad4366d2ef249768e7b0ada304695bf954786e9c4'
|
||||
|
||||
binary_url ({
|
||||
})
|
||||
binary_sha256 ({
|
||||
})
|
||||
|
||||
def self.install
|
||||
system "install -Dm755 has #{CREW_DEST_PREFIX}/bin/has"
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user