[vlc-commits] package/win32: build.sh: Add an option to generate a release archive

Hugo Beauzée-Luyssen git at videolan.org
Tue Dec 12 18:31:34 CET 2017


vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Tue Dec 12 14:54:26 2017 +0100| [60903ec5b4b7419b6fdb6ca953aabb6da5b664f3] | committer: Hugo Beauzée-Luyssen

package/win32: build.sh: Add an option to generate a release archive

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=60903ec5b4b7419b6fdb6ca953aabb6da5b664f3
---

 extras/package/win32/build.sh | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/extras/package/win32/build.sh b/extras/package/win32/build.sh
index 2d943220bd..a9ad76de71 100755
--- a/extras/package/win32/build.sh
+++ b/extras/package/win32/build.sh
@@ -24,7 +24,7 @@ OPTIONS:
    -p            Use a Prebuilt contrib package (speeds up compilation)
    -c            Create a Prebuilt contrib package (rarely used)
    -l            Enable translations (can be slow)
-   -i <n|r>      Create an Installer (n: nightly, r: release)
+   -i <n|r|u>    Create an Installer (n: nightly, r: release, u: unsigned release archive)
 EOF
 }
 
@@ -134,4 +134,7 @@ if [ "$INSTALLER" = "n" ]; then
 make package-win32-debug package-win32
 elif [ "$INSTALLER" = "r" ]; then
 make package-win32
+elif [ "$INSTALLER" = "u" ]; then
+make package-win32-release
+sha512sum vlc-*-release.7z
 fi



More information about the vlc-commits mailing list