Last active
January 30, 2020 16:29
-
-
Save boombatower/1ebdbd2c96e31c5d43e5 to your computer and use it in GitHub Desktop.
Revisions
-
boombatower revised this gist
Mar 14, 2015 . 4 changed files with 9 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -11,6 +11,7 @@ RUN zypper --non-interactive install --no-recommends \ freetype2-devel \ gcc \ gcc-c++ \ git \ hicolor-icon-theme \ libffmpeg-devel \ libjansson-devel \ This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ #!/bin/sh docker build --force-rm -t boombatower/obs-studio . This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ #!/bin/bash sudo rm -rf build/ docker run -v $(realpath .):/srv/obs-studio boombatower/obs-studio This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ #!/bin/bash cd ./build/rundir/RelWithDebInfo/bin/64bit/ ./obs -
boombatower revised this gist
Mar 14, 2015 . 1 changed file with 17 additions and 16 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,31 +1,32 @@ FROM boombatower/opensuse RUN zypper addrepo --no-gpgcheck \ http://packman.inode.at/suse/openSUSE_13.2/ packman && \ zypper mr -p 20 packman && \ zypper refresh RUN zypper --non-interactive install --no-recommends \ cmake \ fontconfig-devel \ freetype2-devel \ gcc \ gcc-c++ \ hicolor-icon-theme \ libffmpeg-devel \ libjansson-devel \ libpulse-devel \ libqt5-qtbase-devel \ libqt5-qtx11extras-devel \ libudev-devel \ libv4l-devel \ libXcomposite-devel \ libXinerama-devel \ libXrandr-devel WORKDIR /srv/obs-studio CMD ["/bin/bash", "-c", "mkdir build && cd build && \ cmake \ -DUNIX_STRUCTURE=0 \ .. && \ make -j4 && make install"] -
boombatower created this gist
Mar 14, 2015 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ FROM boombatower/opensuse RUN zypper addrepo --no-gpgcheck \ http://download.opensuse.org/repositories/home:/radzaquiel:/obs-studio/openSUSE_13.2/home:radzaquiel:obs-studio.repo && \ zypper refresh RUN zypper --non-interactive install --no-recommends \ cmake \ libpulse-devel \ libqt5-qtbase-devel \ libQt5X11Extras-devel \ libavcodec-devel \ libavformat-devel \ libswscale-devel \ libx264-devel \ libswresample-devel \ libfdk-aac-devel \ libxinerama-devel \ libxcomposite-devel \ libxrandr-devel ADD . /srv/obs-studio WORKDIR /srv/obs-studio RUN mkdir build && cd build && \ cmake \ -DOBS_VERSION="1.2.3" \ -DUNIX_STRUCTURE=0 \ -DCMAKE_INSTALL_PREFIX="${HOME}/obs-studio-portable" \ .. && \ make -j4 && make install