diff options
author | gregor herrmann <gregor+github@comodo.priv.at> | 2023-07-24 21:33:35 +0200 |
---|---|---|
committer | Birte Friesel <derf@chaosdorf.de> | 2023-07-24 22:23:02 +0200 |
commit | 5da08b171bdbd01f3345924137331b808572dc2f (patch) | |
tree | a8127ab15a603fb4ca7d2cf01ceb5eae814e9409 /README.md | |
parent | 0f055637ac29a11206bb251e0b6defffa44eef87 (diff) |
Update README.md
Simplify instrucations for manually installing the nightly Debian packages.
`apt` can be used to install `*.deb` files (if give a path, hence the `./`, and takes care of dependencies.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -38,8 +38,7 @@ To install the latest release, run: ``` wget https://lib.finalrewind.org/deb/libtravel-routing-de-vrr-perl_latest_all.deb -sudo dpkg -i libtravel-routing-de-vrr-perl_latest_all.deb -sudo apt --fix-broken install +sudo apt install ./libtravel-routing-de-vrr-perl_latest_all.deb rm libtravel-routing-de-vrr-perl_latest_all.deb ``` @@ -47,17 +46,10 @@ 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 dpkg -i libtravel-routing-de-vrr-perl_dev_all.deb -sudo apt --fix-broken install +sudo apt install ./libtravel-routing-de-vrr-perl_dev_all.deb rm libtravel-routing-de-vrr-perl_dev_all.deb ``` -Note that dpkg, unlike apt, does not automatically install missing -dependencies. If a dependency is not satisfied yet, `dpkg -i` will complain -about unmet dependencies and bail out. `apt --fix-broken install` installs -these dependencies and also silently finishes the Travel::Routing::DE::VRR -installation. - Uninstallation works as usual: ``` |