mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-06 13:29:56 -05:00
update master
This commit is contained in:
commit
7138fa0272
227 changed files with 67492 additions and 3107 deletions
|
|
@ -1,5 +1,6 @@
|
|||
if bashcompletiondir != 'no'
|
||||
aliases = []
|
||||
<<<<<<< HEAD
|
||||
|
||||
if get_option('daemon')
|
||||
aliases += [
|
||||
|
|
@ -16,12 +17,38 @@ if bashcompletiondir != 'no'
|
|||
'parec',
|
||||
'parecord',
|
||||
]
|
||||
=======
|
||||
>>>>>>> c1990dd02647405b0c13aab59f75d05cbb202336
|
||||
|
||||
install_data('pulseaudio', install_dir : bashcompletiondir)
|
||||
if get_option('daemon')
|
||||
aliases += [
|
||||
'pulseaudio',
|
||||
'pacmd',
|
||||
'pasuspender',
|
||||
]
|
||||
|
||||
# Create target directory for symlinks
|
||||
if meson.version().version_compare('>= 0.60.0')
|
||||
install_emptydir(bashcompletiondir)
|
||||
else
|
||||
meson.add_install_script('sh', '-c', 'mkdir -p $DESTDIR@0@'.format(bashcompletiondir))
|
||||
endif
|
||||
endif
|
||||
|
||||
if get_option('client')
|
||||
aliases += [
|
||||
'pacat',
|
||||
'padsp',
|
||||
'paplay',
|
||||
'parec',
|
||||
'parecord',
|
||||
]
|
||||
install_data('pactl', install_dir : bashcompletiondir)
|
||||
endif
|
||||
|
||||
foreach alias : aliases
|
||||
dst = join_paths(bashcompletiondir, alias)
|
||||
cmd = 'ln -fs @0@ $DESTDIR@1@'.format('pulseaudio', dst)
|
||||
cmd = 'ln -fs @0@ $DESTDIR@1@'.format('pactl', dst)
|
||||
meson.add_install_script('sh', '-c', cmd)
|
||||
endforeach
|
||||
endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue