Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update xmllint download url. #37

Open
wants to merge 4 commits into
base: latest
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cookbooks/ros2_windows/attributes/xmllint.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
default['ros2_windows']['xmllint']['xmllint_download_url'] = 'https://www.zlatkovic.com/pub/libxml/64bit/'
7 changes: 4 additions & 3 deletions cookbooks/ros2_windows/recipes/xmllint.rb
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
xmllint_url = node['ros2_windows']['xmllint']['xmllint_download_url']
seven_zip_archive 'libxml2' do
path 'C:\\xmllint'
source 'https://www.zlatkovic.com/pub/libxml/64bit/libxml2-2.9.3-win32-x86_64.7z'
source xmllint_url + '/libxml2-2.9.3-win32-x86_64.7z'
overwrite true
end

seven_zip_archive 'zlib' do
path 'C:\\xmllint'
source 'https://www.zlatkovic.com/pub/libxml/64bit/zlib-1.2.8-win32-x86_64.7z'
source xmllint_url + '/zlib-1.2.8-win32-x86_64.7z'
overwrite true
end

seven_zip_archive 'iconv' do
path 'C:\\xmllint'
source 'https://www.zlatkovic.com/pub/libxml/64bit/iconv-1.14-win32-x86_64.7z'
source xmllint_url + '/iconv-1.14-win32-x86_64.7z'
overwrite true
end

Expand Down