-
Notifications
You must be signed in to change notification settings - Fork 865
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[docs] Added Packet Managers section to Build Instructions
Co-authored-by: Adela0814 <95600143+Adela0814@users.noreply.github.com> Co-authored-by: maxsharabayko <maxlovic@gmail.com>
- Loading branch information
1 parent
453b276
commit 82f742b
Showing
4 changed files
with
59 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Package Managers | ||
|
||
The SRT library can be installed with the help of the following package managers: | ||
|
||
- [Vcpkg](https://github.com/Microsoft/vcpkg) | ||
|
||
The SRT library package name is `libsrt`. For example, to install the library on Unix systems, run: | ||
|
||
``` | ||
./vcpkg install libsrt | ||
``` | ||
|
||
The `libsrt` port in `vcpkg` is kept up to date by Microsoft team members and community contributors. If the SRT version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the `vcpkg` repository. | ||
|
||
- [Homebrew](https://brew.sh/) | ||
|
||
The `Homebrew` formula is [`srt`](https://formulae.brew.sh/formula/srt). See also ["Building SRT on macOS"](./build-macOS.md). | ||
|
||
``` | ||
brew install srt | ||
``` | ||
|
||
- [Apt](https://ubuntu.com/server/docs/package-management) | ||
|
||
``` | ||
sudo apt install libsrt | ||
``` | ||
|
||
- [Conan](https://conan.io/) | ||
|
||
The SRT library package name is [`srt`](https://conan.io/center/srt). |