fix: noconfirm auto-selects first AUR match

This commit is contained in:
2026-05-08 11:01:02 +01:00
parent d39cdc3fd9
commit 153cca6132
8056 changed files with 1983098 additions and 779 deletions
@@ -0,0 +1,6 @@
#include"lib.h"
char *meson_print(void)
{
return "Hello, world!";
}
@@ -0,0 +1 @@
char *meson_print(void);
@@ -0,0 +1,8 @@
#include<lib.h>
#include<stdio.h>
int main(void)
{
char *t = meson_print();
printf("%s", t);
return 0;
}
@@ -0,0 +1,14 @@
project('test spec', 'c')
rpm = import('rpm')
dependency('zlib')
find_program('nonexistprog', required : false)
lib = shared_library('mesontest_shared', ['lib.c', 'lib.h'],
version : '0.1', soversion : '0',
install : true)
executable('mesontest-bin', 'main.c',
link_with : lib,
install : true)
rpm.generate_spec_template()