gpu-screen-recorder and nonfree codecs
This commit is contained in:
parent
82bc6fe868
commit
1974def519
4 changed files with 26 additions and 0 deletions
11
Dockerfile
11
Dockerfile
|
|
@ -19,6 +19,17 @@ rpm-ostree install ksshaskpass uksmd clang clang-devel cronie distrobox fish fla
|
||||||
RUN mkdir /var/opt && cd /tmp && wget https://mullvad.net/da/download/app/rpm/latest -O mullvad.rpm && rpm-ostree install mullvad.rpm && \
|
RUN mkdir /var/opt && cd /tmp && wget https://mullvad.net/da/download/app/rpm/latest -O mullvad.rpm && rpm-ostree install mullvad.rpm && \
|
||||||
mv "/opt/Mullvad VPN" /usr/lib/opt/
|
mv "/opt/Mullvad VPN" /usr/lib/opt/
|
||||||
|
|
||||||
|
# install gpu screen recorder
|
||||||
|
COPY gpu-screen-recorder /tmp/
|
||||||
|
RUN cd /tmp/gpu-screen-recorder && \
|
||||||
|
./install.sh && \
|
||||||
|
setcap cap_sys_admin+ep '/usr/bin/gsr-kms-server'
|
||||||
|
|
||||||
|
# install RPM-fusion
|
||||||
|
RUN rpm-ostree install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
|
||||||
|
# install nonfree codecs
|
||||||
|
RUN rpm-ostree install libavcodec-freeworld
|
||||||
|
|
||||||
RUN rpm-ostree cleanup -m && \
|
RUN rpm-ostree cleanup -m && \
|
||||||
rm -rf /tmp/* /var/* && mkdir -p /var/tmp && chmod -R 1777 /var/tmp && \
|
rm -rf /tmp/* /var/* && mkdir -p /var/tmp && chmod -R 1777 /var/tmp && \
|
||||||
ostree container commit
|
ostree container commit
|
||||||
BIN
gpu-screen-recorder/gpu-screen-recorder
Executable file
BIN
gpu-screen-recorder/gpu-screen-recorder
Executable file
Binary file not shown.
BIN
gpu-screen-recorder/gsr-kms-server
Executable file
BIN
gpu-screen-recorder/gsr-kms-server
Executable file
Binary file not shown.
15
gpu-screen-recorder/install.sh
Executable file
15
gpu-screen-recorder/install.sh
Executable file
|
|
@ -0,0 +1,15 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
script_dir=$(dirname "$0")
|
||||||
|
cd "$script_dir"
|
||||||
|
|
||||||
|
[ $(id -u) -ne 0 ] && echo "You need root privileges to run the install script" && exit 1
|
||||||
|
|
||||||
|
# ./build.sh
|
||||||
|
strip gsr-kms-server
|
||||||
|
strip gpu-screen-recorder
|
||||||
|
rm -f "/usr/local/bin/gpu-screen-recorder"
|
||||||
|
install -Dm755 "gsr-kms-server" "/usr/bin/gsr-kms-server"
|
||||||
|
install -Dm755 "gpu-screen-recorder" "/usr/bin/gpu-screen-recorder"
|
||||||
|
|
||||||
|
echo "Successfully installed gpu-screen-recorder"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue