source: gs3-extensions/pharos/trunk/bin/script/pharos-imageis-identify.pl@ 21242

Last change on this file since 21242 was 21242, checked in by davidb, 14 years ago

Elimination of cmdline-api-srcpack folder. Content moved to top level

  • Property svn:executable set to *
File size: 1.5 KB
Line 
1#!/usr/bin/perl -w
2
3###########################################################################
4#
5# pharos-imageis-add.pl --
6# A component of the Greenstone digital library software
7# from the New Zealand Digital Library Project at the
8# University of Waikato, New Zealand.
9#
10# Copyright (C) 1999 New Zealand Digital Library Project
11#
12# This program is free software; you can redistribute it and/or modify
13# it under the terms of the GNU General Public License as published by
14# the Free Software Foundation; either version 2 of the License, or
15# (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with this program; if not, write to the Free Software
24# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25#
26###########################################################################
27
28BEGIN {
29 die "GSDLHOME not set\n" unless defined $ENV{'GSDLHOME'};
30 die "GSDLOS not set\n" unless defined $ENV{'GSDLOS'};
31 die "IMAGEISHOME not set\n" unless defined $ENV{'IMAGEISHOME'};
32 unshift (@INC, "$ENV{'GSDLHOME'}/perllib");
33}
34
35
36
37print "\n";
38print "****\n";
39print "* Pharos-Greenstone3 Bridge\n";
40print "* - Image Similarity Search\n";
41print "****\n";
42print "\n";
43
44exit 0;
Note: See TracBrowser for help on using the repository browser.