root/SleepTimer/gen_sleep_timer.nsi

Revision 50, 0.9 kB (checked in by blackhex, 16 months ago)

Initial import of SleepTimer? Winamp plugin.

Line 
1Name "SleepTimer 0.1"
2OutFile "gen_sleep_timer.exe"
3InstallDir $PROGRAMFILES\Winamp
4DirText "Please select your Winamp path below: "
5ShowInstDetails nevershow
6
7PageEx license
8   LicenseData license.txt
9   LicenseForceSelection checkbox
10PageExEnd
11
12Page components
13Page directory
14Page instfiles
15
16PageEx license
17   LicenseText "Readme"
18   LicenseData readme_inst.txt
19PageExEnd
20
21Section "Binary files"
22  SetOutPath $INSTDIR\Plugins
23  File bin\gen_sleep_timer.dll
24   
25  CreateDirectory $INSTDIR\Plugins\gen_sleep_timer
26  SetOutPath $INSTDIR\Plugins\gen_sleep_timer
27  File readme.txt
28  File license.txt
29SectionEnd
30
31Section "Source files"
32  CreateDirectory $INSTDIR\Plugins\gen_sleep_timer\src
33  SetOutPath $INSTDIR\Plugins\gen_sleep_timer\src
34  File gen_sleep_timer.nsi
35  File dialogs.h
36  File dialogs.rc
37  File gen_sleep_timer.h
38  File gen_sleep_timer.c
39  File gen_sleep_timer_private.h
40  File gen_sleep_timer_private.rc
41SectionEnd
Note: See TracBrowser for help on using the browser.