-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from jkva/makefile-and-docs
Makefile and docs
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# GADS::Developer::Guide | ||
|
||
## Setting up | ||
|
||
The GADS Distribution is configured via `Makefile.PL`. | ||
|
||
### Debian Linux | ||
|
||
Set up your build tools. | ||
|
||
`apt-get install build-essential` | ||
|
||
Install `local::lib`. | ||
|
||
`cpan local::lib` | ||
|
||
Create a local lib dir. | ||
|
||
`mkdir -p ~/perl5/lib/perl5` | ||
|
||
Set your shell. | ||
|
||
`eval "$(perl -I$HOME/perl5/lib/perl5 -Mlocal::lib)"` | ||
|
||
Run your `Makefile.PL` in bootstrap mode. | ||
|
||
`perl Makefile.PL --bootstrap` | ||
|
||
Run CPAN. | ||
|
||
`cpan.` | ||
|
||
Make. | ||
|
||
`make test` | ||
`make install` | ||
|