summaryrefslogtreecommitdiffstats
path: root/Source/CPack/cmCPackRPMGenerator.h
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-08-08 15:33:42 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-08-08 15:33:42 (GMT)
commit7432ef206e47118d8812be5dc62c7250c9e0bfdd (patch)
treed103f0a5fa3a97c614d1876b494e0515507a3b8b /Source/CPack/cmCPackRPMGenerator.h
parentb34078bca98a052907bb1198e2301d1223b3aae0 (diff)
downloadCMake-7432ef206e47118d8812be5dc62c7250c9e0bfdd.zip
CMake-7432ef206e47118d8812be5dc62c7250c9e0bfdd.tar.gz
CMake-7432ef206e47118d8812be5dc62c7250c9e0bfdd.tar.bz2
ENH: add empty RPM package generator, Eric Noulard wants to work on it
Alex
Diffstat (limited to 'Source/CPack/cmCPackRPMGenerator.h')
-rw-r--r--Source/CPack/cmCPackRPMGenerator.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/Source/CPack/cmCPackRPMGenerator.h b/Source/CPack/cmCPackRPMGenerator.h
new file mode 100644
index 0000000..17c93f4
--- /dev/null
+++ b/Source/CPack/cmCPackRPMGenerator.h
@@ -0,0 +1,48 @@
+/*=========================================================================
+
+ Program: CMake - Cross-Platform Makefile Generator
+ Module: $RCSfile$
+ Language: C++
+ Date: $Date$
+ Version: $Revision$
+
+ Copyright (c) 2002 Kitware, Inc. All rights reserved.
+ See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
+
+ This software is distributed WITHOUT ANY WARRANTY; without even
+ the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ PURPOSE. See the above copyright notices for more information.
+
+=========================================================================*/
+
+#ifndef cmCPackRPMGenerator_h
+#define cmCPackRPMGenerator_h
+
+
+#include "cmCPackGenericGenerator.h"
+
+/** \class cmCPackRPMGenerator
+ * \brief A generator for RPM packages
+ *
+ */
+class cmCPackRPMGenerator : public cmCPackGenericGenerator
+{
+public:
+ cmCPackTypeMacro(cmCPackRPMGenerator, cmCPackGenericGenerator);
+
+ /**
+ * Construct generator
+ */
+ cmCPackRPMGenerator();
+ virtual ~cmCPackRPMGenerator();
+
+protected:
+ virtual int InitializeInternal();
+ int CompressFiles(const char* outFileName, const char* toplevel,
+ const std::vector<std::string>& files);
+ virtual const char* GetOutputExtension() { return ".rpm"; }
+ virtual const char* GetInstallPrefix() { return "/usr"; }
+
+};
+
+#endif