]> git.ipfire.org Git - people/ms/pakfire.git/blob - src/cli/lib/clean.c
232ae6be4bb5477535a75a567d394947e53e6e67
[people/ms/pakfire.git] / src / cli / lib / clean.c
1 /*#############################################################################
2 # #
3 # Pakfire - The IPFire package management system #
4 # Copyright (C) 2023 Pakfire development team #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 #############################################################################*/
20
21 #include <pakfire/pakfire.h>
22
23 #include "clean.h"
24 #include "command.h"
25 #include "pakfire.h"
26
27 static const char* doc = "Removes any temporary files required or left over by"
28 " previous builds.";
29
30 int cli_clean(void* data, int argc, char* argv[]) {
31 struct pakfire* pakfire = NULL;
32 int r;
33
34 struct cli_config* config = data;
35
36 // Parse the command line
37 r = cli_parse(NULL, NULL, NULL, doc, NULL, 0, argc, argv, NULL);
38 if (r)
39 goto ERROR;
40
41 // Setup Pakfire
42 r = cli_setup_pakfire(&pakfire, config);
43 if (r)
44 goto ERROR;
45
46 // Clean!
47 r = pakfire_clean(pakfire, 0);
48
49 ERROR:
50 if (pakfire)
51 pakfire_unref(pakfire);
52
53 return r;
54 }