mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
Merge remote-tracking branch 'origin/master' into Fixes
This commit is contained in:
commit
85f3f2ed9e
@ -1,53 +0,0 @@
|
|||||||
|
|
||||||
# Installation
|
|
||||||
This page contains general installation steps for Hyperion.
|
|
||||||
|
|
||||||
## Windows & macOS
|
|
||||||
For Windows and macOS is an installation file available on our [Release page](https://github.com/hyperion-project/hyperion.ng/releases).
|
|
||||||
|
|
||||||
## Linux:
|
|
||||||
On the following operating systems, Hyperion can currently be installed/updated using the method listed below:
|
|
||||||
- Raspbian Buster/Raspberry Pi OS and later (armhf/arm64)
|
|
||||||
- Debian Buster(10) and later (armhf/arm64/x86_64)
|
|
||||||
- Ubuntu 20.04 and later (armhf/arm64/x86_64)
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
### Install Hyperion:
|
|
||||||
1. Add necessary packages for the installation:
|
|
||||||
```bash
|
|
||||||
sudo apt-get update && sudo apt-get install wget gpg apt-transport-https lsb-release
|
|
||||||
```
|
|
||||||
|
|
||||||
2. Add Hyperion’s official GPG key:
|
|
||||||
```bash
|
|
||||||
wget -qO- https://apt.hyperion-project.org/hyperion.pub.key | sudo gpg --dearmor -o /usr/share/keyrings/hyperion.pub.gpg
|
|
||||||
```
|
|
||||||
|
|
||||||
3. Add Hyperion-Project to your APT sources:
|
|
||||||
```bash
|
|
||||||
echo "deb [signed-by=/usr/share/keyrings/hyperion.pub.gpg] https://apt.hyperion-project.org/ $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hyperion.list
|
|
||||||
```
|
|
||||||
|
|
||||||
4. Update your local package index and install Hyperion:
|
|
||||||
```bash
|
|
||||||
sudo apt-get update && sudo apt-get install hyperion
|
|
||||||
```
|
|
||||||
***
|
|
||||||
|
|
||||||
### Update Hyperion:
|
|
||||||
```bash
|
|
||||||
sudo apt-get install hyperion
|
|
||||||
```
|
|
||||||
***
|
|
||||||
|
|
||||||
### If you want to uninstall Hyperion, use the following commands:
|
|
||||||
1. Remove Hyperion:
|
|
||||||
```bash
|
|
||||||
sudo apt-get --purge autoremove hyperion
|
|
||||||
```
|
|
||||||
|
|
||||||
2. Remove the Hyperion-Project APT source from your system:
|
|
||||||
```bash
|
|
||||||
sudo rm /usr/share/keyrings/hyperion.pub.gpg /etc/apt/sources.list.d/hyperion.list
|
|
||||||
```
|
|
10
README.md
10
README.md
@ -5,7 +5,7 @@
|
|||||||
</picture>
|
</picture>
|
||||||
|
|
||||||
[](https://github.com/hyperion-project/hyperion.ng/releases)
|
[](https://github.com/hyperion-project/hyperion.ng/releases)
|
||||||
[](https://github.com/hyperion-project/hyperion.ng/actions)
|
[](https://github.com/hyperion-project/hyperion.ng/actions)
|
||||||
[](https://github.com/hyperion-project/hyperion.ng/actions/workflows/codeql.yml)
|
[](https://github.com/hyperion-project/hyperion.ng/actions/workflows/codeql.yml)
|
||||||
[](https://www.hyperion-project.org)
|
[](https://www.hyperion-project.org)
|
||||||
[](https://docs.hyperion-project.org)
|
[](https://docs.hyperion-project.org)
|
||||||
@ -45,7 +45,7 @@ For an example, you can participate in the translation.<br>
|
|||||||
|
|
||||||
## Supported Platforms
|
## Supported Platforms
|
||||||
|
|
||||||
Find here more details on [supported platforms and configuration sets](doc/development/SupportedPlatforms.md)
|
Find here more details on [supported platforms and configuration sets](doc/development/SupportedPlatforms.md).
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
Covers these topics:
|
Covers these topics:
|
||||||
@ -57,16 +57,16 @@ Covers these topics:
|
|||||||
[](https://docs.hyperion-project.org)
|
[](https://docs.hyperion-project.org)
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
Released and unreleased changes at [CHANGELOG.md](CHANGELOG.md)
|
Released and unreleased changes at [CHANGELOG.md](CHANGELOG.md).
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
See [CompileHowto.md](doc/development/CompileHowto.md).
|
See [CompileHowto.md](doc/development/CompileHowto.md).
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
See [Documentation](https://docs.hyperion-project.org/en/user/Installation.html) or at [Installation.md](Installation.md).
|
See [Documentation](https://docs.hyperion-project.org/en/user/Installation.html) or on the [Release Repository](https://releases.hyperion-project.org).
|
||||||
|
|
||||||
## Download
|
## Download
|
||||||
Releases available from the [Hyperion release page](https://github.com/hyperion-project/hyperion.ng/releases)
|
Releases available from the [Hyperion release page](https://github.com/hyperion-project/hyperion.ng/releases).
|
||||||
|
|
||||||
## Privacy Policy
|
## Privacy Policy
|
||||||
See [PRIVACY.md](PRIVACY.md).
|
See [PRIVACY.md](PRIVACY.md).
|
||||||
|
3
dependencies/CMakeLists.txt
vendored
3
dependencies/CMakeLists.txt
vendored
@ -48,10 +48,7 @@ if (ENABLE_MDNS)
|
|||||||
BUILD_ALWAYS OFF
|
BUILD_ALWAYS OFF
|
||||||
DOWNLOAD_COMMAND ""
|
DOWNLOAD_COMMAND ""
|
||||||
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/qmdnsengine
|
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/qmdnsengine
|
||||||
BINARY_DIR ${CMAKE_BINARY_DIR}/dependencies/external/qmdnsengine/build
|
|
||||||
CMAKE_ARGS ${QMDNS_CMAKE_ARGS}
|
CMAKE_ARGS ${QMDNS_CMAKE_ARGS}
|
||||||
CONFIGURE_COMMAND ${CMAKE_COMMAND} -S <SOURCE_DIR> -B <BINARY_DIR> ${QMDNS_CMAKE_ARGS} -G ${CMAKE_GENERATOR}
|
|
||||||
BUILD_COMMAND ${CMAKE_COMMAND} --build <BINARY_DIR> --config $<CONFIG>
|
|
||||||
INSTALL_DIR ${CMAKE_BINARY_DIR}
|
INSTALL_DIR ${CMAKE_BINARY_DIR}
|
||||||
BUILD_BYPRODUCTS ${QMDNS_LIBRARIES}
|
BUILD_BYPRODUCTS ${QMDNS_LIBRARIES}
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user