24 lines
574 B
Text
24 lines
574 B
Text
|
#
|
||
|
# This script will advise the user to register the wineasio.dll with WINE
|
||
|
# for their user account.
|
||
|
#
|
||
|
case "${ACTION}" in
|
||
|
pre)
|
||
|
;;
|
||
|
post)
|
||
|
cat << _EOF
|
||
|
=====================================================================
|
||
|
|
||
|
Be sure to run `regsvr32 wineasio.dll' as your user before use!
|
||
|
|
||
|
You may also override the WINEPREFIX environment variable if your
|
||
|
WINE installation is not installed in ~/.wine/
|
||
|
|
||
|
NOTE: The JACK server must be running in order to load the driver
|
||
|
into an application.
|
||
|
|
||
|
=====================================================================
|
||
|
_EOF
|
||
|
;;
|
||
|
esac
|