Skip to content

Commit 2799802

Browse files
committedSep 27, 2011
cookbook for installing/configuring WiX, a toolset that builds Windows installation packages from XML source code
1 parent 3bf1c8c commit 2799802

File tree

4 files changed

+134
-0
lines changed

4 files changed

+134
-0
lines changed
 

‎wix/README.md

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
Description
2+
===========
3+
4+
The [Windows Installer XML](http://wix.sourceforge.net/) (WiX) is a toolset that builds Windows installation packages from XML source code. The toolset supports a command line environment that developers may integrate into their build processes to build MSI and MSM setup packages. This cookbook installs the full WiX suite of tools.
5+
6+
Requirements
7+
============
8+
9+
Platform
10+
--------
11+
12+
* Windows Server 2003 R2
13+
* Windows 7
14+
* Windows Server 2008 (R1, R2)
15+
16+
Cookbooks
17+
---------
18+
19+
* windows
20+
21+
Attributes
22+
==========
23+
24+
* `node['wix']['home']` - location to install WiX files to. default is `%SYSTEMDRIVE%\wix`
25+
26+
Usage
27+
=====
28+
29+
default
30+
-------
31+
32+
Downloads and installs WiX to the location specified by `node['wix']['home']`. Also ensures `node['wix']['home']` is in the system path.
33+
34+
Changes/Roadmap
35+
===============
36+
37+
## Future
38+
39+
* Resource/Provider for creating individual WiX projects.
40+
41+
## 1.0.0:
42+
43+
* initial release
44+
45+
License and Author
46+
==================
47+
48+
Author:: Seth Chisamore (<schisamo@opscode.com>)
49+
50+
Copyright:: 2011, Opscode, Inc.
51+
52+
Licensed under the Apache License, Version 2.0 (the "License");
53+
you may not use this file except in compliance with the License.
54+
You may obtain a copy of the License at
55+
56+
http://www.apache.org/licenses/LICENSE-2.0
57+
58+
Unless required by applicable law or agreed to in writing, software
59+
distributed under the License is distributed on an "AS IS" BASIS,
60+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
61+
See the License for the specific language governing permissions and
62+
limitations under the License.
63+

‎wix/attributes/default.rb

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#
2+
# Author:: Seth Chisamore (<schisamo@opscode.com>)
3+
# Cookbook Name:: wix
4+
# Attribute:: default
5+
#
6+
# Copyright:: Copyright (c) 2011 Opscode, Inc.
7+
#
8+
# Licensed under the Apache License, Version 2.0 (the "License");
9+
# you may not use this file except in compliance with the License.
10+
# You may obtain a copy of the License at
11+
#
12+
# http://www.apache.org/licenses/LICENSE-2.0
13+
#
14+
# Unless required by applicable law or agreed to in writing, software
15+
# distributed under the License is distributed on an "AS IS" BASIS,
16+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
# See the License for the specific language governing permissions and
18+
# limitations under the License.
19+
#
20+
21+
default['wix']['url'] = 'http://wix.sourceforge.net/releases/3.6.2109.0/wix36-binaries.zip'
22+
default['wix']['checksum'] = '14d1ba5b3f4e3377c6a0e768d5dacd0c5231f0cc233de41e4126b29582656f55'
23+
24+
default['wix']['home'] = "#{ENV['SYSTEMDRIVE']}\\wix"

‎wix/metadata.rb

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
maintainer "Opscode, Inc."
2+
maintainer_email "cookbooks@opscode.com"
3+
license "Apache 2.0"
4+
description "Installs/Configures Windows Installer XML toolset (WiX)"
5+
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
6+
version "1.0.0"
7+
supports "windows"
8+
9+
depends "windows", ">= 1.2.2"

‎wix/recipes/default.rb

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
#
2+
# Author:: Seth Chisamore (<schisamo@opscode.com>)
3+
# Cookbook Name:: wix
4+
# Recipe:: default
5+
#
6+
# Copyright 2011, Opscode, Inc.
7+
#
8+
# Licensed under the Apache License, Version 2.0 (the "License");
9+
# you may not use this file except in compliance with the License.
10+
# You may obtain a copy of the License at
11+
#
12+
# http://www.apache.org/licenses/LICENSE-2.0
13+
#
14+
# Unless required by applicable law or agreed to in writing, software
15+
# distributed under the License is distributed on an "AS IS" BASIS,
16+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
# See the License for the specific language governing permissions and
18+
# limitations under the License.
19+
#
20+
21+
file_name = ::File.basename(node['wix']['url'])
22+
23+
remote_file "#{Chef::Config[:file_cache_path]}/#{file_name}" do
24+
source node['wix']['url']
25+
checksum node['wix']['checksum']
26+
notifies :unzip, "windows_zipfile[wix]", :immediately
27+
end
28+
29+
windows_zipfile "wix" do
30+
path node['wix']['home']
31+
source "#{Chef::Config[:file_cache_path]}/#{file_name}"
32+
action :nothing
33+
end
34+
35+
# update path
36+
windows_path node['wix']['home'] do
37+
action :add
38+
end

0 commit comments

Comments
 (0)