The following commit has been merged in the debian_source branch:
commit 70eb586bcc3a90c837f843b731fedab2d3d73423
Author: Arand Nash <[email protected]>
Date:   Thu Jun 30 23:29:47 2011 +0200

    Launcher script windowes by default

diff --git a/debian/scripts/lugaru b/debian/scripts/lugaru
index fc43ac5..b7bc5f2 100644
--- a/debian/scripts/lugaru
+++ b/debian/scripts/lugaru
@@ -1,12 +1,17 @@
 #!/bin/sh
-for arg
-do
-    if [ "$arg" = --help ]
-    then
-       exec man lugaru
-    fi
-done
+
+case "$arg" in
+    -h|-help|--help)
+       exec man lugaru
+        ;;
+    -fullscreen)
+        :
+        ;;
+    *)
+        CMD_OPTIONS=-windowed
+        ;;
+esac
 
 cd /usr/lib/games/lugaru
-exec ./lugaru ${1+"$@"}
+exec ./lugaru "$CMD_OPTIONS" ${1+"$@"}
 # ${1+"$@"} is a portability hack, keyword "wrapper script"

-- 
Packaging for Lugaru HD

_______________________________________________
Pkg-games-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

Reply via email to