diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2023-11-21 22:16:01 +0100 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2023-11-21 22:16:01 +0100 |
commit | 75715047725355884ad04e97aeeff96bacb72c63 (patch) | |
tree | 59fc7aa7f447210174b8a65242ab5740c05acc43 | |
parent | 2b2fcbdee810b59ecfec85929f134c07f5aa40c8 (diff) |
README: Add .deb installation
-rw-r--r-- | README.md | 26 |
1 files changed, 25 insertions, 1 deletions
@@ -5,8 +5,9 @@ routing interfaces. See the [Travel::Routing::DE::HAFAS homepage](https://finalr ## Installation -You have three installation options: +You have four installation options: +* `.deb` releases for Debian-based distributions * Installing the latest release from CPAN * Installation from source * Using a Docker image @@ -15,6 +16,29 @@ Except for Docker, **hafas** is available in your PATH after installation. You can run `hafas --version` to verify this. Documentation is available via `man hafas`. +### Release Builds for Debian + +[lib.finalrewind.org/deb](https://lib.finalrewind.org/deb) provides Debian +packages of all release versions. Note that these are not part of the official +Debian repository and are not covered by its quality assurance process. + +To install the latest release, run: + +``` +wget https://lib.finalrewind.org/deb/libtravel-status-de-deutschebahn-perl_latest_all.deb \ + https://lib.finalrewind.org/deb/libtravel-routing-de-hafas-perl_latest_all.deb +sudo apt install ./libtravel-status-de-deutschebahn-perl_latest_all.deb \ + ./libtravel-routing-de-hafas-perl_latest_all.deb +rm libtravel-status-de-deutschebahn-perl_latest_all.deb \ + libtravel-routing-de-hafas-perl_latest_all.deb +``` + +Uninstallation works as usual: + +``` +sudo apt remove libtravel-routing-de-hafas-perl +``` + ### Installation from CPAN Travel::Routing::DE::HAFAS releases are published on the Comprehensive Perl |