Commit 543f828d authored by Gildas Bazin's avatar Gildas Bazin

* Makefile.am, install-win32: removed rle fonts from the win32 package and added the necessary files for the http interface.
parent 4fd39e0e
...@@ -480,9 +480,6 @@ package-win32: ...@@ -480,9 +480,6 @@ package-win32:
for i in "" $(srcdir)/tmp/plugins/*$(LIBEXT) ; \ for i in "" $(srcdir)/tmp/plugins/*$(LIBEXT) ; \
do if test -n "$$i" ; then $(STRIP) "$$i" ; fi ; done do if test -n "$$i" ; then $(STRIP) "$$i" ; fi ; done
mkdir -p "$(srcdir)/tmp/share"
cp $(srcdir)/share/*.rle $(srcdir)/tmp/share/ ;
mkdir $(srcdir)/tmp/locale mkdir $(srcdir)/tmp/locale
for i in $(ALL_LINGUAS); do \ for i in $(ALL_LINGUAS); do \
mkdir -p "$(srcdir)/tmp/locale/$${i}/LC_MESSAGES" ; \ mkdir -p "$(srcdir)/tmp/locale/$${i}/LC_MESSAGES" ; \
...@@ -498,6 +495,11 @@ package-win32: ...@@ -498,6 +495,11 @@ package-win32:
cp $$i $(srcdir)/tmp/skins/ || true ; \ cp $$i $(srcdir)/tmp/skins/ || true ; \
done done
mkdir -p "$(srcdir)/tmp/http/admin"
cp $(srcdir)/share/http/*.html $(srcdir)/tmp/http/ ;
cp $(srcdir)/share/http/admin/*.html $(srcdir)/tmp/http/admin/ ;
cp $(srcdir)/share/http/admin/.access $(srcdir)/tmp/http/admin/ ;
# Create package # Create package
wine ~/.wine/fake_windows/Program\ Files/NSIS/makensis.exe -- /DVERSION=${VERSION} $(srcdir)/tmp/nsi wine ~/.wine/fake_windows/Program\ Files/NSIS/makensis.exe -- /DVERSION=${VERSION} $(srcdir)/tmp/nsi
# Clean up # Clean up
......
...@@ -62,10 +62,10 @@ Section "Install" ...@@ -62,10 +62,10 @@ Section "Install"
File vlc.exe File vlc.exe
File *.txt File *.txt
File /r share
File /r plugins File /r plugins
File /r locale File /r locale
File /r skins File /r skins
File /r http
SetShellVarContext all SetShellVarContext all
...@@ -79,7 +79,7 @@ Section "Install" ...@@ -79,7 +79,7 @@ Section "Install"
WriteRegStr HKLM \ WriteRegStr HKLM \
SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VideoLAN \ SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VideoLAN \
"DisplayName" "VideoLAN VLC media player" "DisplayName" "VideoLAN VLC media player ${VERSION}"
WriteRegStr HKLM \ WriteRegStr HKLM \
SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VideoLAN \ SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VideoLAN \
"UninstallString" '"$INSTDIR\uninstall.exe"' "UninstallString" '"$INSTDIR\uninstall.exe"'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment