diff -ruN empty/lib/SOso.pm SOso-0.01/lib/SOso.pm --- empty/lib/SOso.pm 1969-12-31 16:00:00.000000000 -0800 +++ SOso-0.01/lib/SOso.pm 2011-08-19 19:28:36.000000000 -0700 @@ -0,0 +1,11 @@ +package SOso; + +use strict; +use warnings; + +our $VERSION = '0.01'; + +require XSLoader; +XSLoader::load('SOso', $VERSION); + +1; diff -ruN empty/Makefile.PL SOso-0.01/Makefile.PL --- empty/Makefile.PL 1969-12-31 16:00:00.000000000 -0800 +++ SOso-0.01/Makefile.PL 2011-08-19 19:32:42.843750000 -0700 @@ -0,0 +1,5 @@ +use ExtUtils::MakeMaker; +WriteMakefile( + NAME => 'SOso', + VERSION_FROM => 'lib/SOso.pm', # finds $VERSION +); diff -ruN empty/MANIFEST SOso-0.01/MANIFEST --- empty/MANIFEST 1969-12-31 16:00:00.000000000 -0800 +++ SOso-0.01/MANIFEST 2011-08-19 19:32:23.609375000 -0700 @@ -0,0 +1,5 @@ +lib/SOso.pm +Makefile.PL +MANIFEST +SOso.xs +t/SOso.t \ No newline at end of file diff -ruN empty/SOso.xs SOso-0.01/SOso.xs --- empty/SOso.xs 1969-12-31 16:00:00.000000000 -0800 +++ SOso-0.01/SOso.xs 2011-08-19 19:30:12.000000000 -0700 @@ -0,0 +1,8 @@ +#include "EXTERN.h" +#include "perl.h" +#include "XSUB.h" + +MODULE = SOso PACKAGE = SOso + +PROTOTYPES: DISABLE + diff -ruN empty/t/SOso.t SOso-0.01/t/SOso.t --- empty/t/SOso.t 1969-12-31 16:00:00.000000000 -0800 +++ SOso-0.01/t/SOso.t 2011-08-19 19:29:00.000000000 -0700 @@ -0,0 +1,4 @@ +use strict; +use warnings; +use Test::More tests => 1; +BEGIN { use_ok('SOso') }; #### md SOso-0.01 cd SOso-0.01 patch -p1 < ../SOso-0.01.patch.txt #### $ tree -f blib blib |-- blib/arch | `-- blib/arch/auto | `-- blib/arch/auto/SOso | |-- blib/arch/auto/SOso/SOso.bs | `-- blib/arch/auto/SOso/SOso.dll |-- blib/bin |-- blib/lib | |-- blib/lib/SOso.pm | `-- blib/lib/auto | `-- blib/lib/auto/SOso |-- blib/man1 |-- blib/man3 `-- blib/script