mirror of
https://github.com/openSUSE/libsolv.git
synced 2026-02-07 00:47:21 +01:00
43 lines
784 B
C
43 lines
784 B
C
/*
|
|
* Copyright (c) 2013, Novell Inc.
|
|
*
|
|
* This program is licensed under the BSD license, read LICENSE.BSD
|
|
* for further information
|
|
*/
|
|
|
|
/*
|
|
* appdata2solv.c
|
|
*
|
|
* parse AppStream appdata type xml and write out .solv file
|
|
*
|
|
* reads from stdin
|
|
* writes to stdout
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <limits.h>
|
|
#include <fcntl.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "pool.h"
|
|
#include "repo.h"
|
|
#include "repo_appdata.h"
|
|
#include "common_write.h"
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
Pool *pool = pool_create();
|
|
Repo *repo = repo_create(pool, "<stdin>");
|
|
if (repo_add_appdata(repo, stdin, 0))
|
|
{
|
|
fprintf(stderr, "appdata2solv: %s\n", pool_errstr(pool));
|
|
exit(1);
|
|
}
|
|
tool_write(repo, 0, 0);
|
|
pool_free(pool);
|
|
exit(0);
|
|
}
|