/* * Copyright 2008 Aaron Seigo * Copyright 2013 Sebastian Kügler * * 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, * 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 Library General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /** * plasmapkg2 exit codes used in this program 0 No error 1 Unspecified error 2 Plugin is not installed 3 Plugin or package invalid 4 Installation failed, see stderr for reason 5 Could not find a suitable installer for package type 6 No install option given 7 Conflicting arguments supplied 8 Uninstallation failed, see stderr for reason 9 Failed to generate package hash */ #include #include #include #include "plasmapkg.h" int main(int argc, char **argv) { QCommandLineParser parser; Plasma::PlasmaPkg app(argc, argv, &parser); const QString description = i18n("Plasma Package Manager"); const char version[] = "2.0"; app.setApplicationVersion(version); parser.addVersionOption(); parser.addHelpOption(); parser.setApplicationDescription(description); parser.addOption(QCommandLineOption(QStringList() << "hash", i18nc("Do not translate ", "Generate a SHA1 hash for the package at "), "path")); parser.addOption(QCommandLineOption(QStringList() << "g" << "global", i18n("For install or remove, operates on packages installed for all users."))); parser.addOption(QCommandLineOption(QStringList() << "t" << "type", i18nc("theme, wallpaper, etc. are keywords, but they may be translated, as both versions " "are recognized by the application " "(if translated, should be same as messages with 'package type' context below)", "The type of package, e.g. theme, wallpaper, plasmoid, dataengine, runner, layout-template, etc."), "type", "plasmoid")); parser.addOption(QCommandLineOption(QStringList() << "i" << "install", i18nc("Do not translate ", "Install the package at "), "path")); parser.addOption(QCommandLineOption(QStringList() << "s" << "show", i18nc("Do not translate ", "Show information of package "), "name")); parser.addOption(QCommandLineOption(QStringList() << "u" << "upgrade", i18nc("Do not translate ", "Upgrade the package at "), "path")); parser.addOption(QCommandLineOption(QStringList() << "l" << "list", i18n("List installed packages"))); parser.addOption(QCommandLineOption(QStringList() << "list-types", i18n("lists all known Package types that can be installed"))); parser.addOption(QCommandLineOption(QStringList() << "r" << "remove", i18nc("Do not translate ", "Remove the package named "), "name")); parser.addOption(QCommandLineOption(QStringList() << "p" << "packageroot", i18n("Absolute path to the package root. If not supplied, then the standard data directories for this KDE session will be searched instead."), "path")); parser.process(app); return app.exec(); }