Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
6247 dpurdie 1
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
2
#
3
# Module name   : build.pl
4
# Module type   : Makefile system
5
# Environment(s): JATS
6
#
7
# Description:    build.pl jats-installer
8
#.........................................................................#
9
 
10
#..     Build system
11
#
12
$MAKELIB_PL     = "$ENV{ GBE_TOOLS }/makelib.pl";
13
$BUILDLIB_PL    = "$ENV{ GBE_TOOLS }/buildlib.pl";
14
 
15
require         "$BUILDLIB_PL";
16
require         "$MAKELIB_PL";
17
 
18
#..     Product configuration
19
#
20
BuildPlatforms ('UBUNTU16', '--OnlyProd');
21
BuildPlatforms ('UBUNTU14', '--OnlyProd');
22
BuildPlatforms ('UBUNTU12', '--OnlyProd');
23
BuildPlatforms ('RHEL7', '--OnlyProd');
24
 
6500 dpurdie 25
BuildName       ( 'jats-installer 1.0.2001 cr' );
6247 dpurdie 26
BuildInterface  ( 'interface' );
27
 
28
#..     External Packages
29
#
6500 dpurdie 30
LinkPkgArchive ( 'debian_dpkg'    , '1.13.25.4000.cots' );
6247 dpurdie 31
LinkPkgArchive ( 'debian_packager', '1.25.0000.cr' );
32
 
33
#
34
#   Generate Files
35
BuildDescpkg    ();
36
BuildMake       ();
37