Created
September 22, 2010 14:11
-
-
Save jjn1056/591738 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use File::Spec; | |
use inc::Module::Install 1.00; | |
all_from 'lib/App/local/lib/helper.pm'; | |
requires 'File::Spec'; | |
requires 'local::lib'; | |
test_requires 'Getopt::Long'; | |
test_requires 'Config'; | |
test_requires 'Test::More' => '0.94'; | |
my $local_lib_helper_script = File::Spec->catdir('script','local-lib-helper'); | |
postamble <<"EOP"; | |
install :: install_local_lib_helper | |
install_local_lib_helper : | |
\t\$(PERL) $local_lib_helper_script @ARGV | |
EOP | |
install_script glob('script/local-lib-helper'); | |
auto_install; | |
WriteAll; | |
test_requires 'Test::More'; | |
all_from 'lib/Task/BeLike/JJNAPIORK.pm'; | |
readme_markdown_from_pod; | |
auto_set_repository; | |
auto_set_homepage; | |
auto_manifest; | |
auto_license; | |
auto_install; | |
manifest_skip; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment