Update upstream cookbooks

This commit is contained in:
Greg Karékinian
2017-03-20 13:19:10 +00:00
parent bfd2d52ea8
commit bcfd44b923
340 changed files with 12576 additions and 5465 deletions

View File

@@ -0,0 +1,15 @@
module BuildEssential
module MsysHelper
#
# This function returns a struct representing an
# msys package. It has two fields: url and checksum
#
# @return [OpenStruct]
#
def msys_p(url, checksum)
OpenStruct.new(url: url, checksum: checksum)
end
end
end
Chef::Recipe.send(:include, BuildEssential::MsysHelper)