aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Game/Code/Classes/UPlatformLinux.pas3
-rw-r--r--Game/Code/UltraStarDeluxe.control14
-rw-r--r--Game/Code/lib/requirements.txt6
-rw-r--r--Game/Code/package_debian.sh15
4 files changed, 28 insertions, 10 deletions
diff --git a/Game/Code/Classes/UPlatformLinux.pas b/Game/Code/Classes/UPlatformLinux.pas
index fe4bbf11..0883b0f8 100644
--- a/Game/Code/Classes/UPlatformLinux.pas
+++ b/Game/Code/Classes/UPlatformLinux.pas
@@ -143,6 +143,9 @@ begin
{$ELSE}
result := LogPath+'/';
{$ENDIF}
+
+ forcedirectories( result );
+
end;
function TPlatformLinux.GetGameSharedPath : WideString;
diff --git a/Game/Code/UltraStarDeluxe.control b/Game/Code/UltraStarDeluxe.control
index f85408f1..4fb8753a 100644
--- a/Game/Code/UltraStarDeluxe.control
+++ b/Game/Code/UltraStarDeluxe.control
@@ -5,5 +5,15 @@ Installed-Size: 18400
Maintainer: Jay Binks <jaybinks@gmail.com>
Architecture: i386
Version: 1.1.1
-Depends: libc6 (>= 2.1), libsdl1.2debian-alsa, libportaudio2, libavcodec0d, libavformat0d, libsqlite3-0, libsdl-ttf2.0-0, libsdl-image1.2
-Description: Ultrastar is a Karaoke game for the pc, similar to SingStar
+Depends: libc6 (>= 2.1), libsdl1.2debian-alsa, libportaudio2, libavcodec1d, libavformat1d, libsqlite3-0, libsdl-ttf2.0-0, libsdl-image1.2
+Description:
+ Karaoke Software for PC like Singstar for PS2.
+ It evaluates your singing by analyzing your voice pitch.
+ Songs can be created with integrated Editor.
+ .
+ This is a Fork of the UltraStar Project with many massive improvements.
+ .
+ http://www.ultrastardeluxe.org/
+
+
+
diff --git a/Game/Code/lib/requirements.txt b/Game/Code/lib/requirements.txt
index 81759cfc..a8cd99eb 100644
--- a/Game/Code/lib/requirements.txt
+++ b/Game/Code/lib/requirements.txt
@@ -26,7 +26,11 @@ On top of the above pas files, you will need development libraries for them.
here are the instructions needed to compile on ubunty ( 7.04 )
- sudo apt-get install libavcodec-dev libavformat-dev libsqlite3-dev libsdl-ttf2.0-dev libsdl-image1.2-dev portaudio19-dev
+ sudo apt-get install libavcodec-dev libavformat-dev libsqlite3-dev libsdl-ttf2.0-dev libsdl-image1.2-dev portaudio19-dev
+
+ in order to build the configure file ( with autogen.sh )
+
+ sudo apt-get install automake autoconf
for Fedora 8 ( contributed by kdub )
diff --git a/Game/Code/package_debian.sh b/Game/Code/package_debian.sh
index 7a4dfccc..bdb341a2 100644
--- a/Game/Code/package_debian.sh
+++ b/Game/Code/package_debian.sh
@@ -10,16 +10,17 @@ mkdir ../../../packages
mkdir ../../../deb-package
mkdir ../../../deb-package/DEBIAN
mkdir ../../../deb-package/usr
-mkdir ../../../deb-package/usr/share
-mkdir ../../../deb-package/usr/share/UltraStarDeluxe
+mkdir ../../../deb-package/usr/local
+mkdir ../../../deb-package/usr/local/share
+mkdir ../../../deb-package/usr/local/share/UltraStarDeluxe
mkdir ../../../deb-package/usr/bin
-cp ./UltraStar ../../../deb-package/usr/bin/UltraStarDeluxe
+cp ../../UltraStar ../../../deb-package/usr/bin/UltraStarDeluxe
-cp -a ../../Themes/ ../../../deb-package/usr/share/UltraStarDeluxe/
-cp -a ../../Sounds/ ../../../deb-package/usr/share/UltraStarDeluxe/
-cp -a ../../Skins/ ../../../deb-package/usr/share/UltraStarDeluxe/
-cp -a ../../Languages/ ../../../deb-package/usr/share/UltraStarDeluxe/
+cp -a ../../Themes/ ../../../deb-package/usr/local/share/UltraStarDeluxe/
+cp -a ../../Sounds/ ../../../deb-package/usr/local/share/UltraStarDeluxe/
+cp -a ../../Skins/ ../../../deb-package/usr/local/share/UltraStarDeluxe/
+cp -a ../../Languages/ ../../../deb-package/usr/local/share/UltraStarDeluxe/
cp UltraStarDeluxe.control ../../../deb-package/DEBIAN/control