-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# QSV DEBIAN APT REPOSITORY | ||
|
||
This repository contains the Debian packages for the QSV <https://github.com/jqnatividad/qsv> | ||
|
||
## Usage | ||
|
||
To use this repository, add the following line to your `/etc/apt/sources.list`: | ||
|
||
``` bash | ||
echo "deb [signed-by=/etc/apt/trusted.gpg.d/qsv-deb.gpg] https://tin097.github.io/qsv-deb-releases ./" > qsv.list | ||
``` | ||
|
||
Before you can install the packages, you need to add the repository key to your trusted keys: | ||
|
||
``` bash | ||
wget -O - https://tino097.github.io/qsv-deb-releases/qsv-deb.gpg | sudo apt-key add - | ||
``` | ||
|
||
After that, you can install the packages using `apt`: | ||
|
||
``` bash | ||
sudo apt update | ||
sudo apt install qsv | ||
``` | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
echo "deb [signed-by=/etc/apt/trusted.gpg.d/qsv-deb.gpg] https://tin097.github.io/my_ppa ./" > qsv.list | ||
echo "deb [signed-by=/etc/apt/trusted.gpg.d/qsv-deb.gpg] https://tin097.github.io/qsv-deb-releases ./" > qsv.list |