fix: noconfirm auto-selects first AUR match
This commit is contained in:
@@ -0,0 +1 @@
|
||||
Installed cat is installed.
|
||||
@@ -0,0 +1,11 @@
|
||||
project('custom install dirs', 'c')
|
||||
executable('prog', 'prog.c', install : true, install_dir : 'dib/dab/dub')
|
||||
executable('prog2', 'prog.c', install : true, install_dir : get_option('prefix') + '/dib/dab/dub2')
|
||||
install_headers('sample.h', install_dir : 'some/dir')
|
||||
install_headers('sample.h', install_dir : get_option('prefix') + '/some/dir2')
|
||||
install_man('prog.1', install_dir : 'woman')
|
||||
install_man('prog.1', install_dir : get_option('prefix') + '/woman2')
|
||||
install_data('datafile.cat', install_dir : 'meow')
|
||||
install_data('datafile.cat', install_dir : get_option('prefix') + '/meow2')
|
||||
install_subdir('subdir', install_dir : 'woof')
|
||||
install_subdir('subdir', install_dir : get_option('prefix') + '/woof2')
|
||||
@@ -0,0 +1 @@
|
||||
Man up, you.
|
||||
@@ -0,0 +1,3 @@
|
||||
int main(void) {
|
||||
return 0;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
#ifndef SAMPLE_H
|
||||
#define SAMPLE_H
|
||||
|
||||
int wackiness();
|
||||
|
||||
#endif
|
||||
+1
@@ -0,0 +1 @@
|
||||
Installed dog is installed.
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"installed": [
|
||||
{"type": "exe", "file": "usr/dib/dab/dub/prog"},
|
||||
{"type": "pdb", "file": "usr/dib/dab/dub/prog"},
|
||||
{"type": "exe", "file": "usr/dib/dab/dub2/prog2"},
|
||||
{"type": "pdb", "file": "usr/dib/dab/dub2/prog2"},
|
||||
{"type": "file", "file": "usr/some/dir/sample.h"},
|
||||
{"type": "file", "file": "usr/some/dir2/sample.h"},
|
||||
{"type": "file", "file": "usr/woman/prog.1"},
|
||||
{"type": "file", "file": "usr/woman2/prog.1"},
|
||||
{"type": "file", "file": "usr/meow/datafile.cat"},
|
||||
{"type": "file", "file": "usr/meow2/datafile.cat"},
|
||||
{"type": "file", "file": "usr/woof/subdir/datafile.dog"},
|
||||
{"type": "file", "file": "usr/woof2/subdir/datafile.dog"}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user