Help for this page

Select Code to Download


  1. or download this
    print "Checking for GSL..\n";
    
    ...
    chomp(my $gsl_prefix = qx{gsl-config --prefix});
    chomp(my $gsl_cflags = qx{gsl-config --cflags});
    chomp(my $gsl_libs   = qx{gsl-config --libs});
    
  2. or download this
    bail("Please install the taglib C++ library first. \nI need the packag
    +e that has taglib-config")
      unless system('taglib-config --version > /dev/null') == 0;
    ...
    chomp(my $libs   = qx{taglib-config --libs});
    ...
    chomp(my $inc = qx{taglib-config --cflags});
    
  3. or download this
    #!perl
    
    ...
      print "$lc_bat has been written\n";
    
    }