#!/usr/bin/perl

use strict;
use warnings;

use Getopt::Long qw/ GetOptions /;
use Pod::Usage qw/ pod2usage /;

my $INSTALLPRIVLIB = 0;
my $help           = 0;
GetOptions(
    'h|help!'       => \$help,
    'show-privlib!' => \$INSTALLPRIVLIB,
) or die "$!";

if ($help)
{
    pod2usage(1);
}

if ($INSTALLPRIVLIB)
{
    print "/usr/lib/x86_64-linux-gnu/wml";
    print "\n";
}
