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 @@
#!/usr/bin/env python3
import sys
import shutil
shutil.copyfile(sys.argv[1], sys.argv[2])
@@ -0,0 +1,7 @@
project('custom target subdir depend files', 'c')
copy = find_program('copyfile.py')
subdir('subdir')
executable('foo', foo_src)
@@ -0,0 +1 @@
You can depend on this file.
@@ -0,0 +1,6 @@
#include <stdio.h>
int main(void) {
printf("foo is working.\n");
return 0;
}
@@ -0,0 +1,6 @@
foo_src = custom_target('foo_src',
depend_files : 'dep.dat',
input : 'foo.c.in',
output : 'foo.c',
command : [copy, '@INPUT@', '@OUTPUT@']
)