Skip to content

Commit

Permalink
Added configuration check file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Manex.agirrezabal@gmail.com authored and Manex.agirrezabal@gmail.com committed Jul 1, 2013
1 parent eece3b2 commit 67fcb10
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions configure
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/usr/bin/perl

check ("flookup");
check ("foma");
check ("hunpos-tag");
print "\nEverything is OK!\n";

sub check {
$name=shift();
if (! grep { -x "$_/$name"}split /:/,$ENV{PATH}) {
print "$name is not installed in the system!";
exit (-1);
}
else {
print "$name installed!\n";
}
}


0 comments on commit 67fcb10

Please sign in to comment.