| [94] | 1 | ; Written by redxii <[email protected]>
|
|---|
| 2 | ; Codecs installer for SMPlayer
|
|---|
| 3 |
|
|---|
| 4 | ;--------------------------------
|
|---|
| 5 | ;Compressor
|
|---|
| 6 |
|
|---|
| 7 | SetCompressor /SOLID lzma
|
|---|
| 8 | SetCompressorDictSize 32
|
|---|
| 9 |
|
|---|
| 10 | ;--------------------------------
|
|---|
| 11 | ;Defines
|
|---|
| 12 |
|
|---|
| 13 | !define PRODUCT_VERSION "20071007"
|
|---|
| 14 |
|
|---|
| 15 | ;--------------------------------
|
|---|
| 16 | ;Include Modern UI and functions
|
|---|
| 17 |
|
|---|
| 18 | !include MUI2.nsh
|
|---|
| 19 |
|
|---|
| 20 | ;--------------------------------
|
|---|
| 21 | ;General
|
|---|
| 22 |
|
|---|
| 23 | ;Name and file
|
|---|
| 24 | Name "MPlayer Binary Codecs ${PRODUCT_VERSION}"
|
|---|
| 25 | OutFile "smplayer_codecs_${PRODUCT_VERSION}.exe"
|
|---|
| 26 |
|
|---|
| 27 | ;Show details
|
|---|
| |
|---|