source: ProjectBuilder/devel/pb/etc/pb.pb@ 5

Last change on this file since 5 was 5, checked in by Bruno Cornec, 17 years ago

Lots of modifs to find the right way. Probably still not good

File size: 957 bytes
RevLine 
[5]1#!/usr/bin/perl -w
2#
3# Project Builder configuration file
4# For project pb ;-)
5#
6# $Id$
7#
8use strict;
9use Exporter();
10use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
11@ISA = qw(Exporter);
12# global vars are here
13@EXPORT_OK = qw(%defpkgdir %extpkgdir %versions &pb_init);
14use vars @EXPORT_OK;
15
16
17sub pb_init {
18
19# Root of the project to build
20# needs at least 2 levels of dir as in the upper
21# other dirs will be created and used
22$ENV{'PBROOT'}="$ENV{'HOME'}/pb/svn/devel";
23
24# If CVS, gives the way to login
25#$ENV{'CVSVAR'}=":pserver:anonymous@linuxcoe.cvs.sourceforge.net:/cvsroot/linuxcoe";
26
27# Optional CVS login if project managed under CVS
28#$ENV{'CVSVAR'}=":pserver:anonymous@linuxcoe.cvs.sourceforge.net:/cvsroot/linuxcoe";
29
30# List of pkg to build by default
31%defpkgdir = {
32 "projectbuilder" => "pb",
33 "projectbuilder-doc" => "pb-doc",
34}
35
36# List of additional pkg to build when all is called
37%extpkgdir = {
38}
39
40# Valid version names
41%version = {};
42
43}
441;
Note: See TracBrowser for help on using the repository browser.