summaryrefslogtreecommitdiff
path: root/lib/subunit/perl/Makefile.PL.in
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-03-30 15:03:41 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-03-31 02:20:10 +0200
commit197c98292bd838e27da6692ba8e7984f12a66fef (patch)
tree1bf3da2e8d6d682105a418daa02ea4d8465f5ad8 /lib/subunit/perl/Makefile.PL.in
parent9fe4b01ca682b57cf7c79775abacf135d0c87d42 (diff)
downloadsamba-197c98292bd838e27da6692ba8e7984f12a66fef.tar.gz
samba-197c98292bd838e27da6692ba8e7984f12a66fef.tar.bz2
samba-197c98292bd838e27da6692ba8e7984f12a66fef.zip
subunit: Also import copies of filters and perl module.
Diffstat (limited to 'lib/subunit/perl/Makefile.PL.in')
-rwxr-xr-xlib/subunit/perl/Makefile.PL.in20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/subunit/perl/Makefile.PL.in b/lib/subunit/perl/Makefile.PL.in
new file mode 100755
index 0000000000..26e1c181f0
--- /dev/null
+++ b/lib/subunit/perl/Makefile.PL.in
@@ -0,0 +1,20 @@
+use ExtUtils::MakeMaker;
+WriteMakefile(
+ 'INSTALL_BASE' => '@prefix@',
+ 'NAME' => 'Subunit',
+ 'VERSION' => '@SUBUNIT_VERSION@',
+ 'test' => { 'TESTS' => 'tests/*.pl' },
+ 'PMLIBDIRS' => [ 'lib' ],
+ 'EXE_FILES' => [ '@abs_srcdir@/subunit-diff' ],
+);
+sub MY::postamble {
+<<'EOT';
+check: # test
+
+uninstall_distcheck:
+ rm -fr $(DESTINSTALLARCHLIB)
+
+VPATH = @srcdir@
+.PHONY: uninstall_distcheck
+EOT
+}