Skip to content

Commit

Permalink
[+-] Add Installation procedures and Fixed issue #1
Browse files Browse the repository at this point in the history
- Added installation processes for Debian and Arch.
- Removed development section as project has been moved to release
- Fixed issue #1, being faced by Arch users due to missing gst-plugins-bad in gstreamer
- We thank [Hi-Phile](https://github.com/Hi-Phile) for figuring out this issue and fixed the issue as well. We really appreciate your effort.
  • Loading branch information
0x0is1 committed Oct 24, 2022
1 parent 0704bc1 commit 92efde7
Showing 1 changed file with 36 additions and 9 deletions.
45 changes: 36 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,41 @@ For more see [IPTV Project](https://github.com/iptv-org/iptv).


## Requirements
* Qt C++ (for libraries used, as it's not deployed yet independentaly).
### For Debian and Ubuntu Distro

- Qt (5.13.0+)
- QMake (3.1+)
- gstreamer (1.20.3+)
- GNU Make (4.3+)

### For Arch and Similar distros
- Qt (5.13.0+)
- QMake (3.1+)
- gstreamer (1.20.3+)
- GNU Make (4.3+)
- gst-plugins-bad

## Installation
### For Debian and Ubuntu+

```sh
$ git clone https://github.com/0x0is1/iptv-desktop
$ cd iptv-desktop/src
$ qmake iptv-desktop.pro
$ make
$ ./iptv-desktop
```
## For Arch and related

```sh
$ sudo pacman -S gst-plugins-bad
$ git clone https://github.com/0x0is1/iptv-desktop
$ cd iptv-desktop/src
$ qmake iptv-desktop.pro
$ make
$ ./iptv-desktop
```


## Features

Expand Down Expand Up @@ -67,14 +101,7 @@ For more see [IPTV Project](https://github.com/iptv-org/iptv).
</details>

## Copyright
We respect privacy and copyrights, if iptv-org wants to remove this content please reach us by [mail](mailto:://0x0is1@protonmail.com). we will remove the content asap.

## Future development

- Bugs fixing
- New Features
- Completely deployed binaries
- `qmake` file for manual-compilation
We respect privacy and copyrights, if iptv-org wants to remove this content please reach us by [mail](mailto:://0x0is1@protonmail.com). we will remove the content.

## Feedback

Expand Down

0 comments on commit 92efde7

Please sign in to comment.