File 0002-add-libspeex-to-installer.diff of Package ioquake3-win32
From 52ac678ad2cc80e5622840aa87114db5cc60b95d Mon Sep 17 00:00:00 2001
From: Ludwig Nussel <ludwig.nussel@suse.de>
Date: Tue, 3 Jun 2008 09:06:09 +0200
Subject: [PATCH] add libspeex to installer
---
misc/nsis/ioquake3.nsi.in | 14 +++++++++++---
1 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/misc/nsis/ioquake3.nsi.in b/misc/nsis/ioquake3.nsi.in
index a2244d5..a64dc45 100644
--- a/misc/nsis/ioquake3.nsi.in
+++ b/misc/nsis/ioquake3.nsi.in
@@ -5,7 +5,7 @@
; This file is used to automatically build the installers in the
; openSUSE build service, don't break this!
;
-; you have to copy SDL.dll and libcurl-4.dll here manually
+; you have to copy SDL.dll and libcurl-4.dll libspeex-1.dll here manually
; The name of the installer
Name "ioquake3"
@@ -78,7 +78,7 @@ Section "Start Menu Shortcuts"
SectionEnd
-Section "SDL.dll"
+Section "SDL library"
SetOutPath $INSTDIR
@@ -86,7 +86,7 @@ Section "SDL.dll"
SectionEnd
-Section "libcurl"
+Section "curl library"
SetOutPath $INSTDIR
@@ -94,6 +94,14 @@ Section "libcurl"
SectionEnd
+Section "speex library"
+
+ SetOutPath $INSTDIR
+
+ File "libspeex-1.dll"
+
+SectionEnd
+
;--------------------------------
; Uninstaller
--
1.5.4.5