meta: add build system and stub tool source code

This commit is contained in:
2025-07-07 13:56:20 +01:00
parent 2bc7a0d900
commit ba40290eea
27 changed files with 990 additions and 0 deletions

22
ropam/vendor/add.c vendored Normal file
View File

@@ -0,0 +1,22 @@
#include "../commands.h"
#include <blue/cmd.h>
static int vendor_add(
const b_command *self,
const b_arglist *opt,
const b_array *args)
{
return 0;
}
B_COMMAND(CMD_VENDOR_ADD, CMD_VENDOR)
{
B_COMMAND_NAME("add");
B_COMMAND_SHORT_NAME('A');
B_COMMAND_DESC("add a new package vendor to the system.");
B_COMMAND_FLAGS(B_COMMAND_SHOW_HELP_BY_DEFAULT);
B_COMMAND_FUNCTION(vendor_add);
B_COMMAND_HELP_OPTION();
}