Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / 0.61.09 / src / modules / mod_yuv420p / mod_yuv420p.nsh
1 ; The stuff to install
2 Section "mod_yuv420p" Sec_mod_yuv420p
3
4 ;  SectionIn RO
5   
6   ; Set output path to the installation directory.
7   SetOutPath "$INSTDIR\lib\synfig\modules"
8   
9   ; Put file there
10   File /oname=mod_yuv420p.dll "src\modules\mod_yuv420p\.libs\libmod_yuv420p.dll"
11
12
13   FileOpen $0 $INSTDIR\etc\synfig_modules.cfg a
14   FileSeek $0 0 END
15   FileWrite $0 "mod_yuv420p"
16   FileWriteByte $0 "13"
17   FileWriteByte $0 "10"
18   FileClose $0
19
20 SectionEnd
21