-
Notifications
You must be signed in to change notification settings - Fork 9
DebianUbuntu
Steve Sixty-Four edited this page Sep 3, 2015
·
3 revisions
- Avoid manually downloading deb packages, and taking care of their dependencies by hand
- Let APT do the work, by extending
/etc/apt/sources.list
.
- A full-fledged "standard structured" repository would be overkill for a single package.
-
Packages.gz
describes the recent version deb package and has to be replaced at release time.
- GoogleDrive makes it very hard to reference single files for download.
- A
Packages.gz
file there could not be maintained. - A "simple" HTML redirect doesn't work since APT doesn't follow it.
- Use "emergency download mirror"
http://geotoad.faehrwiese.selfhost.me/downloads/
- Disadvantage: may not always be reachable, and disappear completely
- Add this line as
/etc/apt/sources.list.d/geotoad.list
:
deb [trusted=yes] http://geotoad.faehrwiese.selfhost.me/downloads/ ./
- Remove the
[trusted=yes]
part if you want to be queried. - Run
apt-get update
, thenapt-get install geotoad
(orupgrade
)
This feature may vanish in the future without prior notice, and/or miss updates.
You're on your own to keep the sources.list
file or remove/rename it should it fail.