Subversion Repositories DevTools

Rev

Rev 4003 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3991 dpurdie 1
########################################################################
4995 dpurdie 2
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
3991 dpurdie 3
#
4
# Module name   : PackageApp
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
#SetVerbose (2);
18
 
19
#
20
#   Specify the DEBIAN packaging files
21
#
22
PackageDescription ("Template Package");
23
 
24
#
25
#   Insert the Application
26
#
27
CopyDir ('localfiles', '/etc/files');
28
CopyDir ('localfiles.2', '/etc/files', '--Merge');
29
 
30
#
31
#   Make every thing executable
32
#       This is good for directories
33
#       This is good for all files in this package.
34
#
35
Message ("Mark files as executable");
36
SetFilePerms ('a+rx', '/' , '--Recurse');
37
 
38
#
39
#   All done
40
#   The wrapper scripts will build and package the complete package
41