您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

23 行
416 B

  1. use Module::Build;
  2. my $builder = Module::Build->new (
  3. module_name => 'Term::Caca',
  4. license => 'wtfpl',
  5. requires => {
  6. },
  7. build_requires => {
  8. 'Test::More' => 0,
  9. },
  10. script_files => [
  11. ],
  12. extra_compiler_flags => scalar `caca-config --cflags`,
  13. extra_linker_flags => scalar `caca-config --libs`,
  14. create_makefile_pl => 'passthrough',
  15. );
  16. $builder->create_build_script();