blob: 542146588d6fe02564455a25a020c8c93ade5d7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
if [ ! -d GENTOO_DATADIR/data/music ] ; then
echo "You have to install the data files in order to play!"
echo "You can either \`emerge freecraft-fcmp\` or install"
echo "the data files from the Warcraft CD."
echo
echo "To install off the warcraft CD do this:"
echo " 1 mount the cd at /mnt/cdrom"
echo " 2 run the script GENTOO_DATADIR/tools/build.sh"
echo " 3 leave cd in the drive to listen to music"
exit 1
fi
freecraft -d GENTOO_DATADIR/data "$@"
|