1.7 Trunk, aber es hatte auch schon mit älteren Versionen geklappt.Ich hab das Lazarus-project_1.6.2-1_amd64.deb Paket installiert und du?
Das runwait.sh gehört zu Lazarus.Da das Terminal aber das runwait.sh ausführen
Etwas besonderees ist diese Datei auch nicht.
Code: Alles auswählen
#!/bin/sh
CommandLine=$@
#set -x
echo $CommandLine
ext=${CommandLine#*.}
if [ "$ext" = "exe" ]; then
echo "Windows Executable detected. Attempting to use WINE..."
if [ -x "`which wine`" ]; then
wine $CommandLine
else
echo "WINE not found in path"
fi
else
$CommandLine
fi
echo "--------------------------------------------------"
echo "Press enter"
read trash crash
# end.