Skip to content

Commit d5aebe9

Browse files
author
Despair-Paradise
committed
Build Scripts
1 parent d540ffa commit d5aebe9

File tree

7 files changed

+55
-0
lines changed

7 files changed

+55
-0
lines changed

7Zip/7za.dll

372 KB
Binary file not shown.

7Zip/7za.exe

1.09 MB
Binary file not shown.

7Zip/7zxa.dll

204 KB
Binary file not shown.

7Zip/licence.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
7-Zip Extra
2+
~~~~~~~~~~~
3+
License for use and distribution
4+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5+
6+
Copyright (C) 1999-2018 Igor Pavlov.
7+
8+
7-Zip Extra files are under the GNU LGPL license.
9+
10+
11+
Notes:
12+
You can use 7-Zip Extra on any computer, including a computer in a commercial
13+
organization. You don't need to register or pay for 7-Zip.
14+
15+
16+
GNU LGPL information
17+
--------------------
18+
19+
This library is free software; you can redistribute it and/or
20+
modify it under the terms of the GNU Lesser General Public
21+
License as published by the Free Software Foundation; either
22+
version 2.1 of the License, or (at your option) any later version.
23+
24+
This library is distributed in the hope that it will be useful,
25+
but WITHOUT ANY WARRANTY; without even the implied warranty of
26+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27+
Lesser General Public License for more details.
28+
29+
You can receive a copy of the GNU Lesser General Public License from
30+
http://www.gnu.org/
31+

7Zip/readme.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
./x64/ from https://sourceforge.net/projects/sevenzip/files/7-Zip/18.05/7z1805-extra.7z/download
2+
3+
## Untouched. Feels free to compare MD5

BUILD.BAT

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Powershell.exe -executionpolicy remotesigned -File ./buildScript.ps1

buildScript.ps1

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
$mpc = "https://freefr.dl.sourceforge.net/project/mpcbe/MPC-BE/Nightly%20Builds%20%28from%20svn%20trunk%29/1.5.2%20%28build%203973%29%20beta/MPC-BE.1.5.2.3973.x64.7z"
2+
$mad = "http://madshi.net/madVR.zip"
3+
$lav = "https://github.com/Nevcairiel/LAVFilters/releases/download/0.73.1/LAVFilters-0.73.1-x64.zip"
4+
$xys = "https://github.com/Cyberbeing/xy-VSFilter/releases/download/3.1.0.752/XySubFilter_3.1.0.752_x64.zip"
5+
$syn = "https://github.com/Syncplay/syncplay/releases/download/v1.6.0/Syncplay_1.6.0_Portable.zip"
6+
7+
8+
mkdir "Downloads"
9+
10+
Write-Host "Downloading MPC-BE"
11+
Invoke-WebRequest -Uri $mpc -OutFile ".\Downloads\mpcbe.7z"
12+
Write-Host "Downloading LAVFilters"
13+
Invoke-WebRequest -Uri $lav -OutFile ".\Downloads\lavfilters.zip"
14+
Write-Host "Downloading madVR"
15+
Invoke-WebRequest -Uri $mad -OutFile ".\Downloads\madvr.zip"
16+
Write-Host "Downloading XySubFilter"
17+
Invoke-WebRequest -Uri $xys -OutFile ".\Downloads\xysubfilter.zip"
18+
Write-Host "Downloading SyncPlay"
19+
Invoke-WebRequest -Uri $syn -OutFile ".\Downloads\syncplay.zip"
20+

0 commit comments

Comments
 (0)