mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 12:44:07 +00:00
10 lines
239 B
Bash
Executable file
10 lines
239 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Run this script for properly play of the sounds under Mac OS X
|
|
#
|
|
if test -f "/usr/local/lib/ao/plugins-4/libmacosx.so"; then :
|
|
else
|
|
mkdir -p /usr/local/lib/ao/plugins-4
|
|
cp lib/libmacosx.so /usr/local/lib/ao/plugins-4/
|
|
fi
|