File tree 3 files changed +113
-4
lines changed
3 files changed +113
-4
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ my $builder = Module::Build::WithXSpp->new(
10
10
license => ' perl' ,
11
11
dist_author => q{ Kartik Thakore <[email protected] >} ,
12
12
dist_version_from => ' lib/Box2D.pm' ,
13
+ configure_requires => {
14
+ ' Module::Build' => 0.38,
15
+ },
13
16
build_requires => {
14
17
' Test::More' => 0,
15
18
' Alien::Box2D' => 0.103,
Original file line number Diff line number Diff line change 1
1
Build.PL
2
2
Changes
3
- MANIFEST
4
- README
3
+ examples/drawCirclePhysics.pl
4
+ examples/drawPhysics.pl
5
+ examples/gfxdrawPhysics.pl
6
+ examples/helloWorld.pl
5
7
lib/Box2D.pm
6
8
lib/Box2D/b2ContactListener.pm
9
+ MANIFEST This list of files
10
+ META.json
11
+ META.yml
12
+ README
13
+ src/helper.h
14
+ src/PerlContactListener.h
15
+ src/ppport.h
7
16
t/00-load.t
17
+ t/01-box2d.t
18
+ t/02-b2math.t
19
+ t/03-b2world.t
20
+ t/04-contact-listener.t
21
+ t/05-b2circle.t
22
+ t/06-b2fixturedef.t
23
+ t/07-b2body.t
24
+ t/boilerplate.t
8
25
t/manifest.t
9
26
t/pod-coverage.t
10
27
t/pod.t
11
- META.yml
12
- META.json
28
+ tools/doxy_pod_con.pl
29
+ xsp/b2Body.xsp
30
+ xsp/b2BodyDef.xsp
31
+ xsp/b2CircleShape.xsp
32
+ xsp/b2Contact.xsp
33
+ xsp/b2Fixture.xsp
34
+ xsp/b2FixtureDef.xsp
35
+ xsp/b2Manifold.xsp
36
+ xsp/b2Mat22.xsp
37
+ xsp/b2PolygonShape.xsp
38
+ xsp/b2Shape.xsp
39
+ xsp/b2Transform.xsp
40
+ xsp/b2Vec2.xsp
41
+ xsp/b2World.xsp
42
+ xsp/Box2D.xsp
43
+ xsp/my.map
44
+ xsp/PerlContactListener.xsp
45
+ xsp/typemap.xsp
Original file line number Diff line number Diff line change
1
+
2
+ #!start included C:\strawberry\perl\lib\ExtUtils\MANIFEST.SKIP
3
+ # Avoid version control files.
4
+ \bRCS\b
5
+ \bCVS\b
6
+ \bSCCS\b
7
+ ,v$
8
+ \B\.svn\b
9
+ \B\.git\b
10
+ \B\.gitignore\b
11
+ \b_darcs\b
12
+ \B\.cvsignore$
13
+
14
+ # Avoid VMS specific MakeMaker generated files
15
+ \bDescrip.MMS$
16
+ \bDESCRIP.MMS$
17
+ \bdescrip.mms$
18
+
19
+ # Avoid Makemaker generated and utility files.
20
+ \bMANIFEST\.bak
21
+ \bMakefile$
22
+ \bblib/
23
+ \bMakeMaker-\d
24
+ \bpm_to_blib\.ts$
25
+ \bpm_to_blib$
26
+ \bblibdirs\.ts$ # 6.18 through 6.25 generated this
27
+
28
+ # Avoid Module::Build generated and utility files.
29
+ \bBuild$
30
+ \b_build/
31
+ \bBuild.bat$
32
+ \bBuild.COM$
33
+ \bBUILD.COM$
34
+ \bbuild.com$
35
+
36
+ # Avoid temp and backup files.
37
+ ~$
38
+ \.old$
39
+ \#$
40
+ \b\.#
41
+ \.bak$
42
+ \.tmp$
43
+ \.#
44
+ \.rej$
45
+
46
+ # Avoid OS-specific files/dirs
47
+ # Mac OSX metadata
48
+ \B\.DS_Store
49
+ # Mac OSX SMB mount metadata files
50
+ \B\._
51
+
52
+ # Avoid Devel::Cover and Devel::CoverX::Covered files.
53
+ \bcover_db\b
54
+ \bcovered\b
55
+
56
+ # Avoid MYMETA files
57
+ ^MYMETA\.
58
+ #!end included C:\strawberry\perl\lib\ExtUtils\MANIFEST.SKIP
59
+
60
+ # Avoid configuration metadata file
61
+ ^MYMETA\.
62
+
63
+ # Avoid Module::Build generated and utility files.
64
+ \bBuild$
65
+ \bBuild.bat$
66
+ \b_build
67
+ \bBuild.COM$
68
+ \bBUILD.COM$
69
+ \bbuild.com$
70
+ ^MANIFEST\.SKIP
71
+
72
+ # Avoid archives of this distribution
73
+ \bBox2D-[\d\.\_]+
You can’t perform that action at this time.
0 commit comments