If you look in the file ${CMAKE_BINARY_DIR}/CPackConfig.cmake, you should see something like this:<br>SET(CPACK_PACKAGE_FILE_NAME "cmake-2.6.3-Linux-unknown")<br><br>That variable controls the name of the installer file produced by CPack. If you set the variable to whatever you want prior to the "include(CPack)" in your main CMakeLists.txt file, it should generate a file with your name instead of the default.<br>
<br>Or, if you are building CMake (as it appears from the file name), you could define it in the cache when you first run cmake:<br>cmake -DCPACK_PACKAGE_FILE_NAME=filename-that-follows-my-convention ../CMake<br><br><br>HTH,<br>
David<br><br><br><div class="gmail_quote">On Mon, Jun 8, 2009 at 6:26 PM, Christian Goetze (CG Linden) <span dir="ltr"><<a href="mailto:cg@lindenlab.com">cg@lindenlab.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I used the following process to build a .deb out of the cmake source tree:<br>
<br>
tar xzf cmake-2.6.3.tar.gz<br>
cd cmake-2.6.3<br>
mkdir build<br>
cd build/<br>
cmake ../<br>
make<br>
bin/cpack -G DEB<br>
<br>
This produces a debian named: cmake-2.6.3-Linux-unknown.deb<br>
I would like to change the name to conform to our conventions. How do I<br>
do that?<br>
I can't find any documentation for the DEB generator ...<br>
--<br>
<font color="#888888">cg<br>
<br>
<br>
<br>
</font><br>_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the CMake FAQ at: <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br></blockquote></div><br>