- Timestamp:
- 07/31/07 10:34:37 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
honeyclient/branches/exp/kindlund-dynamic_updates/create_pkg_makefile.pl
- Property svn:keywords set to Id "$file"
r13 r791 1 1 #!/usr/bin/perl 2 3 # $Id$ 4 2 5 # Remember to add $name to this, or else it will not work 3 6 use warnings; … … 37 40 find(\&process,'lib'); 38 41 foreach( sort keys %requires){ 39 printf FILE "requires\t %s => %s;\n",$_,$requires{$_};42 printf FILE "requires\t'%s' => '%s';\n",$_,$requires{$_}; 40 43 } 41 44 } … … 49 52 print FILE "license\t\t'gpl';\n"; 50 53 print FILE "perl_version\t'5.006';\n"; 54 print FILE "author\t\t'MITRE Honeyclient Project <honeyclient\@mitre.org>';\n"; 51 55 52 56 … … 61 65 get_dependencies(join("::",@name)); 62 66 print FILE "\n"; 67 print FILE "no_index\t'directory' => 'etc';\n"; 68 print FILE "no_index\t'directory' => 'inc';\n"; 69 print FILE "no_index\t'directory' => 'thirdparty';\n"; 70 print FILE "\n"; 63 71 print FILE "auto_install;\n"; 64 72 print FILE "WriteAll;\n";
