Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • derf/travel-routing-de-efa
1 result
Show changes
Commits on Source (2)
...@@ -10,15 +10,13 @@ for details. ...@@ -10,15 +10,13 @@ for details.
efa has been packaged as efa has been packaged as
[libtravel-routing-de-vrr-perl](https://packages.debian.org/search?keywords=libtravel-routing-de-vrr-perl) [libtravel-routing-de-vrr-perl](https://packages.debian.org/search?keywords=libtravel-routing-de-vrr-perl)
for Debian, so you can install it using your package manager of choice on for Debian, so you can install it using your package manager of choice on
Debian-based Linux distributions. It is also available as Debian-based Linux distributions. The package provides the commandline client
[perl-travel-routing-de-vrr-git](https://aur.archlinux.org/packages/perl-travel-routing-de-vrr-git/) as well as the Perl module.
in the archlinux User Repository (AUR). Both provide the commandline client and
the Perl module.
If you are using another distribution or would prefer a more recent version, If you are using another distribution or would prefer a more recent version,
you have four installation options: you have four installation options:
* Nightly `.deb` builds for Debian-based distributions * `.deb` releases for Debian-based distributions
* Installing the latest release from CPAN * Installing the latest release from CPAN
* Installation from source * Installation from source
* Using a Docker image * Using a Docker image
...@@ -27,12 +25,11 @@ Except for Docker, **efa** is available in your PATH after installation. You ...@@ -27,12 +25,11 @@ Except for Docker, **efa** is available in your PATH after installation. You
can run `efa --version` to verify this. Documentation is available via can run `efa --version` to verify this. Documentation is available via
`man efa`. `man efa`.
### Nightly Builds for Debian ### Release Builds for Debian
[lib.finalrewind.org/deb](https://lib.finalrewind.org/deb) provides Debian [lib.finalrewind.org/deb](https://lib.finalrewind.org/deb) provides Debian
packages of both development and release versions. Note that these are not part packages of all release versions. Note that these are not part of the official
of the official Debian repository and are not covered by its quality assurance Debian repository and are not covered by its quality assurance process.
process.
To install the latest release, run: To install the latest release, run:
...@@ -42,14 +39,6 @@ sudo apt install ./libtravel-routing-de-vrr-perl_latest_all.deb ...@@ -42,14 +39,6 @@ sudo apt install ./libtravel-routing-de-vrr-perl_latest_all.deb
rm libtravel-routing-de-vrr-perl_latest_all.deb rm libtravel-routing-de-vrr-perl_latest_all.deb
``` ```
For a (possibly broken) development snapshot of the Git master branch, run:
```
wget https://lib.finalrewind.org/deb/libtravel-routing-de-vrr-perl_dev_all.deb
sudo apt install ./libtravel-routing-de-vrr-perl_dev_all.deb
rm libtravel-routing-de-vrr-perl_dev_all.deb
```
Uninstallation works as usual: Uninstallation works as usual:
``` ```
......