Remove Perl YAML dependency from documentation.
YAML is no longer necessary in Perl since ard-parse-boards was implemented in the Makefile itself.
This commit is contained in:
parent
6936a1dcfd
commit
474da2ced4
2 changed files with 1 additions and 8 deletions
|
@ -22,35 +22,29 @@ On Linux, you might prefer:
|
||||||
AVR_TOOLS_DIR = /usr
|
AVR_TOOLS_DIR = /usr
|
||||||
|
|
||||||
The Makefile also delegates resetting the board to a short Perl program.
|
The Makefile also delegates resetting the board to a short Perl program.
|
||||||
You'll need to install `Device::SerialPort` to use it though. You'll also
|
You'll need to install `Device::SerialPort` to use it though.
|
||||||
need the `YAML` library to run ard-parse-boards.
|
|
||||||
|
|
||||||
On Debian or Ubuntu:
|
On Debian or Ubuntu:
|
||||||
|
|
||||||
apt-get install libdevice-serialport-perl
|
apt-get install libdevice-serialport-perl
|
||||||
apt-get install libyaml-perl
|
|
||||||
|
|
||||||
On Fedora:
|
On Fedora:
|
||||||
|
|
||||||
yum install perl-Device-SerialPort
|
yum install perl-Device-SerialPort
|
||||||
yum install perl-YAML
|
|
||||||
|
|
||||||
On openSUSE:
|
On openSUSE:
|
||||||
|
|
||||||
zypper install perl-Device-SerialPort
|
zypper install perl-Device-SerialPort
|
||||||
zypper install perl-YAML
|
|
||||||
|
|
||||||
On Mac using MacPorts:
|
On Mac using MacPorts:
|
||||||
|
|
||||||
sudo port install p5-device-serialport
|
sudo port install p5-device-serialport
|
||||||
sudo port install p5-YAML
|
|
||||||
|
|
||||||
and use /opt/local/bin/perl5 instead of /usr/bin/perl
|
and use /opt/local/bin/perl5 instead of /usr/bin/perl
|
||||||
|
|
||||||
On other systems:
|
On other systems:
|
||||||
|
|
||||||
cpanm Device::SerialPort
|
cpanm Device::SerialPort
|
||||||
cpanm YAML
|
|
||||||
|
|
||||||
## Including Libraries
|
## Including Libraries
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,6 @@
|
||||||
# DEPENDENCIES
|
# DEPENDENCIES
|
||||||
#
|
#
|
||||||
# The Perl programs need a couple of libraries:
|
# The Perl programs need a couple of libraries:
|
||||||
# YAML
|
|
||||||
# Device::SerialPort
|
# Device::SerialPort
|
||||||
#
|
#
|
||||||
########################################################################
|
########################################################################
|
||||||
|
|
Loading…
Reference in a new issue