github.com/slspeek/camlistore_namedsearch@v0.0.0-20140519202248-ed6f70f7721a/clients/android/check-environment.pl (about)

     1  #!/usr/bin/perl
     2  
     3  use strict;
     4  use FindBin qw($Bin);
     5  
     6  my $props = "$Bin/local.properties";
     7  unless (-e $props) {
     8      die "\n".
     9          "**************************************************************\n".
    10          "Can't build the Camlistore Android client; SDK not configured.\n".
    11          "You need to create your $props file.\n".
    12          "See local.properties.TEMPLATE for instructions.\n".
    13          "**************************************************************\n\n";
    14  }