Subversion Repositories DevTools

Rev

Rev 1467 | Rev 1475 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1467 Rev 1469
Line 21... Line 21...
21
DebianFiles ('--PostInst=.deb/postinstall');
21
DebianFiles ('--PostInst=.deb/postinstall');
22
 
22
 
23
#
23
#
24
#   Insert the Application
24
#   Insert the Application
25
#
25
#
26
CopyDir ( '/',      '/',    '--Source=PackagePkgDir' );
26
CopyDir ( '/',      '/',    '--Source=LibDir' );
27
CopyDir ( '/',      '/lib', '--Source=PackageLibDir', '--Merge' );
-
 
28
 
27
 
29
 
28
 
30
#
29
#
31
#   Make every thing executable
30
#   Make every thing executable
32
#       This is good for directories
31
#       This is good for directories
33
#       This is good for all files in this package.
32
#       This is good for all files in this package.
34
#
33
#
35
Message ("Mark files as executable");
34
Message ("Mark files as executable");
36
SetFilePerms ('a+rx', '/bin' , '--Recurse');
35
SetFilePerms ('a+rx', '/afc/bin' , '--Recurse');
37
SetFilePerms ('a+rx', '/lib' , '--Recurse');
36
SetFilePerms ('a+rx', '/afc/lib' , '--Recurse');
38
 
37
 
39
#
38
#
40
#   All done
39
#   All done
41
#   The wrapper scripts will build and package the complete package
40
#   The wrapper scripts will build and package the complete package
42
 
41