Subversion Repositories DevTools

Rev

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

Rev 1469 Rev 1475
Line 15... Line 15...
15
#......................................................................#
15
#......................................................................#
16
 
16
 
17
#
17
#
18
#   Specify the DEBIAN packaging files
18
#   Specify the DEBIAN packaging files
19
#
19
#
20
PackageDescription ("Unknown Debian Package Description");
20
PackageDescription ('TAG_DESCRIPTION');
21
DebianFiles ('--PostInst=.deb/postinstall');
21
DebianFiles ('--PostInst=TAG_POSTINSTALL');
22
 
22
 
23
#
23
#
24
#   Insert the Application
24
#   Insert the Application
25
#
25
#
26
CopyDir ( '/',      '/',    '--Source=LibDir' );
26
CopyDir ( '/',      '/',    '--Source=LibDir' );
Line 30... Line 30...
30
#   Make every thing executable
30
#   Make every thing executable
31
#       This is good for directories
31
#       This is good for directories
32
#       This is good for all files in this package.
32
#       This is good for all files in this package.
33
#
33
#
34
Message ("Mark files as executable");
34
Message ("Mark files as executable");
35
SetFilePerms ('a+rx', '/afc/bin' , '--Recurse');
-
 
36
SetFilePerms ('a+rx', '/afc/lib' , '--Recurse');
35
SetFilePerms ('a+rx', '/' , '--Recurse');
37
 
36
 
38
#
37
#
39
#   All done
38
#   All done
40
#   The wrapper scripts will build and package the complete package
39
#   The wrapper scripts will build and package the complete package
41
 
40