Commit db6e0311 authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Remove useless git version magic from Build.PL, update gitignore

parent 13b9dcdf
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -7,3 +7,4 @@
/MANIFEST.SKIP
/MANIFEST.SKIP.bak
/MYMETA.yml
/MYMETA.json
+3 −9
Original line number Diff line number Diff line
@@ -4,7 +4,8 @@ use strict;
use warnings;
use Module::Build;

my %opts = (
Module::Build->new(

	build_requires => {
		'Test::More' => 0,
		'Test::Compile' => 0,
@@ -20,12 +21,5 @@ my %opts = (
		'XML::LibXML' => 0,
		'WWW::Mechanize' => 0,
	},
);

if (-d '.git' and qx{which git} =~ qr{/git$}) {
	$opts{'dist_version'} = qx{git describe};
	chomp $opts{'dist_version'};
}

my $build = Module::Build->new(%opts);
$build->create_build_script;
)->create_build_script();