mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
cc4ae3d987
sound plugins
12 lines
372 B
Bash
12 lines
372 B
Bash
#!/bin/sh -e
|
|
|
|
update-alternatives --install /usr/lib/quakeforge/libsnd_output_default.so quakeforge-audio-default /usr/lib/quakeforge/libsnd_output_disk.so 10
|
|
update-alternatives --install /usr/lib/quakeforge/libsnd_output_default.so quakeforge-audio-default /usr/lib/quakeforge/libsnd_output_null.so 20
|
|
|
|
if [ "$1" = "configure" ]; then
|
|
ldconfig
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|