• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Tree/H02-Feb-2021-3,4041,154

scripts/H03-May-2022-296206

t/H03-May-2022-529391

xt/author/H02-Feb-2021-84

Changelog.iniH A D02-Feb-202113.8 KiB369334

ChangesH A D02-Feb-202113.2 KiB273237

LICENSEH A D19-Dec-202019.8 KiB379305

MANIFESTH A D02-Feb-2021595 2625

MANIFEST.SKIPH A D19-Dec-2020610 4839

META.jsonH A D02-Feb-20211.7 KiB7271

META.ymlH A D02-Feb-2021863 3534

Makefile.PLH A D02-Feb-20211.5 KiB8876

READMEH A D19-Dec-20201.3 KiB5036

README

1README file for Tree::DAG_Node.
2
3See also: CHANGES and Changelog.ini.
4
5Warning: WinZip 8.1 and 9.0 both contain an 'accidental' bug which stops
6them recognizing POSIX-style directory structures in valid tar files.
7You are better off using a reliable tool such as InfoZip:
8ftp://ftp.info-zip.org/pub/infozip/
9
101 Installing from a Unix-like distro
11------------------------------------
12shell>gunzip Tree-DAG_Node-1.18.tgz
13shell>tar mxvf Tree-DAG_Node-1.18.tar
14
15On Unix-like systems, assuming you have installed Module::Build V 0.25+:
16
17shell>perl Build.PL
18shell>./Build
19shell>./Build test
20shell>./Build install
21
22On MS Windows-like systems, assuming you have installed Module::Build V 0.25+:
23
24shell>perl Build.PL
25shell>perl Build
26shell>perl Build test
27shell>perl Build install
28
29Alternately, without Module::Build, you do this:
30
31Note: 'make' on MS Windows-like systems may be called 'nmake' or 'dmake'.
32
33shell>perl Makefile.PL
34shell>make
35shell>make test
36shell>su              (for Unix-like systems)
37shell>make install
38shell>exit            (for Unix-like systems)
39
40On all systems:
41
42Run DAG_Node.pm through your favourite pod2html translator.
43
442 Installing from an ActiveState distro
45---------------------------------------
46shell>unzip Tree-DAG_Node-1.18.zip
47shell>ppm install --location=. Tree-DAG_Node
48shell>del Tree-DAG_Node-1.18.ppd
49shell>del PPM-Tree-DAG_Node-1.18.tar.gz
50