26 lines
759 B
Markdown
26 lines
759 B
Markdown
# sView COPR
|
|
|
|
RPM Specfile for [sView](https://www.sview.ru/en/) stereoscopic player to build using [COPR](https://copr.fedorainfracloud.org).
|
|
|
|
You can install sView from COPR by running following commands
|
|
|
|
```bash
|
|
sudo dnf copr enable pivpav/sView
|
|
sudo dnf install sview
|
|
```
|
|
|
|
or you can compile it manually
|
|
|
|
```bash
|
|
dnf install wget fedora-packager git -y
|
|
rpmdev-setuptree
|
|
git clone https://git.netra.pivpav.com/public/sview-copr.git /tmp/sview-copr
|
|
cp /tmp/sview-copr/sview.rpm.spec ~/rpmbuild/SPECS/
|
|
cd ~/rpmbuild/SOURCES
|
|
wget https://github.com/gkv311/sview/archive/301eccf5f81e0483710e01ec477906a13fb8988b.zip
|
|
cd ~/rpmbuild/SPECS
|
|
yum-builddep sview.rpm.spec -y
|
|
rpmbuild -ba sview.rpm.spec
|
|
dnf install ~/rpmbuild/RPMS/x86_64/sview-20.08-4.x86_64.rpm
|
|
```
|