source: ProjectBuilder/devel/pb-modules/bin/pbdistrocheck@ 402

Last change on this file since 402 was 402, checked in by Bruno Cornec, 16 years ago

Split Base.pm and Distribution.pm to create a new perl-ProjectBuilder module (for CPAN submission as well)

File size: 375 bytes
Line 
1#!/usr/bin/perl -w
2#
3# Project Builder Distribution Checker
4#
5# $Id$
6#
7# Copyright B. Cornec 2007
8# Provided under the GPL v2
9
10use strict 'vars';
11use Data::Dumper;
12use lib qw (lib);
13use ProjectBuilder::Distribution qw (pb_distro_init);
14
15my ($ddir, $dver, $dfam, $dtype, $pbsuf) = pb_distro_init();
16print "distro tuple: ".join(',',($ddir, $dver, $dfam, $dtype, $pbsuf))."\n";
Note: See TracBrowser for help on using the repository browser.