add_subdirectory(doc)
add_subdirectory(agent)
add_subdirectory(plugins)
+add_subdirectory(choco)
if(MSVC)
add_subdirectory(icinga-installer)
## Version
-Update the version number in the following files:
+Update the version number in the following file:
* [icinga2.spec]: Version: (.*)
-* [icinga2.nuspec]: <version>(.*)</version>
-* [tools/chocolateyInstall.ps1]: Icinga2-v(.*)-{x86,x86_64}.msi
Example:
--- /dev/null
+# Icinga 2
+# Copyright (C) 2012-2016 Icinga Development Team (https://www.icinga.org/)
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software Foundation
+# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+
+if(WIN32)
+ find_program(CHOCO_BINARY choco)
+
+ configure_file(icinga2.nuspec.cmake icinga2.nuspec)
+ configure_file(chocolateyInstall.ps1.cmake chocolateyInstall.ps1)
+
+ add_custom_target(choco-pkg ALL
+ COMMAND choco pack
+ COMMAND ${CMAKE_COMMAND} -E rename ${CMAKE_CURRENT_BINARY_DIR}/icinga2.${SPEC_VERSION}.nupkg ${CMAKE_CURRENT_BINARY_DIR}/icinga2.nupkg
+ DEPENDS icinga2.nuspec ${CMAKE_CURRENT_BINARY_DIR}/chocolateyInstall.ps1 chocolateyUninstall.ps1
+ )
+endif()
$packageName = 'icinga2'\r
$installerType = 'msi'\r
-$url32 = 'http://packages.icinga.org/windows/Icinga2-v2.5.4-x86.msi'\r
-$url64 = 'http://packages.icinga.org/windows/Icinga2-v2.5.4-x86_64.msi'\r
+$url32 = 'http://packages.icinga.org/windows/Icinga2-v${SPEC_VERSION}-x86.msi'\r
+$url64 = 'http://packages.icinga.org/windows/Icinga2-v${SPEC_VERSION}-x86_64.msi'\r
$silentArgs = '/qn /norestart'\r
$validExitCodes = @(0)\r
\r
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->\r
<id>icinga2</id>\r
<title>Icinga2</title>\r
- <version>2.5.4</version>\r
+ <version>${SPEC_VERSION}</version>\r
<authors>2016 - The Icinga Project</authors>\r
<owners>Icinga Development Team</owners>\r
<summary>icinga2 - Monitoring Agent for Windows</summary>\r
<iconUrl>https://www.icinga.org/wp-content/uploads/2015/05/icinga_icon_128x128.png</iconUrl>\r
</metadata>\r
<files>\r
- <file src="tools\chocolateyInstall.ps1" target="tools" />\r
- <file src="tools\chocolateyUninstall.ps1" target="tools" />\r
+ <file src="${CMAKE_CURRENT_BINARY_DIR}/chocolateyInstall.ps1" target="tools" />\r
+ <file src="${CMAKE_CURRENT_SOURCE_DIR}/chocolateyUninstall.ps1" target="tools" />\r
</files>\r
</package>\r