Exd/scripts/main.pl

22 lines
323 B
Perl
Raw Normal View History

2024-10-13 02:20:45 +02:00
#!/usr/bin/env perl
use v5.40.0;
use strict;
use warnings;
2024-10-29 20:33:00 +01:00
use File::Basename qw/dirname/;
2024-11-11 12:01:44 +01:00
2024-11-11 12:07:57 +01:00
BEGIN {
2024-11-11 12:57:44 +01:00
# open my $fh, '>&', \*STDERR;
# open STDERR, '>', '/dev/null';
2024-11-11 12:01:44 +01:00
system 'perl', 'Build.PL';
system 'perl', 'Build', 'build';
2024-11-11 12:57:44 +01:00
# open STDERR, '>&', $fh;
2024-11-11 12:07:57 +01:00
};
2024-11-11 12:01:44 +01:00
2024-11-10 18:04:52 +01:00
use blib;
2024-10-29 20:33:00 +01:00
2024-10-13 02:20:45 +02:00
use Exd::Gui;
Exd::Gui->new->start();