Subversion Repositories DevTools

Rev

Rev 5721 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1467 alewis 1
########################################################################
6152 dpurdie 2
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
1467 alewis 3
#
5721 dpurdie 4
# Module name   : Shellbuild
1467 alewis 5
# Module type   : Makefile system
6
# Compiler(s)   : n/a
7
# Environment(s): jats
8
#
9
# Description   : Script to be processed by the Debian Packager
10
#                 This script is not directly processed by JATS
11
#
12
#   This file is processed by the Debian Packager in order to construct
13
#   the package. It contains simple directives to construct the package
14
#
15
#......................................................................#
16
 
17
#
18
#   Specify the DEBIAN packaging files
19
#
1475 dpurdie 20
PackageDescription ('TAG_DESCRIPTION');
21
DebianFiles ('--PostInst=TAG_POSTINSTALL');
1467 alewis 22
 
23
#
24
#   Insert the Application
25
#
4857 alewis 26
CopyDir ( 'TAG_DEBPKGDIR',      '/',);
1467 alewis 27
 
28
 
29
#
30
#   Make every thing executable
31
#       This is good for directories
32
#       This is good for all files in this package.
33
#
34
Message ("Mark files as executable");
1475 dpurdie 35
SetFilePerms ('a+rx', '/' , '--Recurse');
1467 alewis 36
 
37
#
38
#   All done
39
#   The wrapper scripts will build and package the complete package
40