View Single Post
  #281  
Old 19-06-2013, 10:07
kostaskaraivalis kostaskaraivalis is offline
Registered User
 
Join Date: Jun 2013
Location: Greece
Posts: 9
Thanks: 8
Thanked 1 Time in 1 Post
kostaskaraivalis is on a distinguished road
Quote:
Originally Posted by red01 View Post
I have a little question to ask again.

I use classical method of compression
i.e. freearc (-m0)>precomp>srep>freearc (-mx) >innosetup.

lets assume my data file is data1.arc (after final -mx compression).

What changes i have to make in archieves.ini for this method of compression.?
Try this assuming your compressed files have the same name "data1"
Code:
if not ISArcExtract ( 0, 33, ExpandConstant('{src}\data1.arc'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
if not ISSRepExtract   ( 0, 33, ExpandConstant('{app}\data1.srep'),ExpandConstant('{app}\data1.arc'), true) then break;
if not ISArcExtract ( 0, 34, ExpandConstant('{app}\data1.arc'), ExpandConstant('{app}'), '', true, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
Reply With Quote