2024-06-20 00:34:32 +00:00
|
|
|
#include "../../include/all.h"
|
2024-06-27 20:05:39 +00:00
|
|
|
|
2024-06-20 00:34:32 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2024-07-06 00:48:23 +00:00
|
|
|
#include <string.h>
|
2024-06-20 00:34:32 +00:00
|
|
|
|
2024-06-27 20:05:39 +00:00
|
|
|
#define DATA_DIR "/tmp/data"
|
2024-07-06 00:48:23 +00:00
|
|
|
#define TEMP_DIR "/tmp/temp"
|
|
|
|
#define ROOT_DIR "/tmp/root"
|
2024-06-27 20:05:39 +00:00
|
|
|
|
2024-06-20 00:34:32 +00:00
|
|
|
int main(int argc, char *argv[]) {
|
2024-07-05 13:27:11 +00:00
|
|
|
int ret = EXIT_FAILURE;
|
|
|
|
lm_pkg_t *pkg = NULL;
|
|
|
|
lm_ctx_t ctx;
|
2024-06-20 00:34:32 +00:00
|
|
|
|
2024-06-20 22:36:56 +00:00
|
|
|
if (argc != 2) {
|
2024-06-20 00:34:32 +00:00
|
|
|
printf("usage: %s <pool url>\n", argv[0]);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2024-07-06 00:48:23 +00:00
|
|
|
if (!mkdir_ifnot(ROOT_DIR)) {
|
|
|
|
printf("failed to create root dir: %s", ROOT_DIR);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2024-06-20 00:34:32 +00:00
|
|
|
lm_ctx_init(&ctx);
|
|
|
|
|
2024-06-27 20:05:39 +00:00
|
|
|
if (!lm_ctx_set_data(&ctx, DATA_DIR)) {
|
|
|
|
printf("failed to set data dir: %s (%d)\n", lm_strerror(), lm_error());
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2024-07-06 00:48:23 +00:00
|
|
|
if (!lm_ctx_set_temp(&ctx, TEMP_DIR)) {
|
|
|
|
printf("failed to set temp dir: %s (%d)\n", lm_strerror(), lm_error());
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!lm_ctx_set_root(&ctx, ROOT_DIR)) {
|
|
|
|
printf("failed to set root dir: %s (%d)\n", lm_strerror(), lm_error());
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2024-07-01 03:43:20 +00:00
|
|
|
if (lm_ctx_pool_add(&ctx, "base", argv[1]) == NULL) {
|
2024-06-20 00:34:32 +00:00
|
|
|
printf("failed to add pool: %s (%d)\n", lm_strerror(), lm_error());
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2024-07-05 13:27:11 +00:00
|
|
|
lm_ctx_ping(&ctx, NULL, NULL);
|
|
|
|
lm_ctx_sync(&ctx, true, NULL, NULL);
|
2024-07-01 03:43:20 +00:00
|
|
|
|
2024-07-05 13:27:11 +00:00
|
|
|
if ((pkg = lm_ctx_find(&ctx, "which", NULL)) == NULL) {
|
2024-07-06 00:48:23 +00:00
|
|
|
printf("failed to find package: %s (%d)\n", lm_strerror(), lm_error());
|
2024-07-05 13:27:11 +00:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!lm_ctx_download(&ctx, pkg, NULL, NULL)) {
|
2024-07-06 00:48:23 +00:00
|
|
|
printf("failed to download package: %s (%d)\n", lm_strerror(), lm_error());
|
2024-07-05 13:27:11 +00:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!lm_ctx_install(&ctx, pkg, NULL, NULL)) {
|
2024-07-04 00:12:33 +00:00
|
|
|
printf("failed to install the package: %s (%d)\n", lm_strerror(), lm_error());
|
2024-07-02 01:44:07 +00:00
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2024-06-20 00:34:32 +00:00
|
|
|
ret = EXIT_SUCCESS;
|
|
|
|
|
|
|
|
end:
|
|
|
|
lm_ctx_free(&ctx);
|
|
|
|
return ret;
|
|
|
|
}
|