-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
fix(dispatcharr): add comskip installation and build dependencies #16224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
9768e7a
6d05a83
b2f39f8
ecba253
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -104,7 +104,21 @@ EOF | |
| msg_ok "Migrated Nginx Configuration" | ||
| fi | ||
|
|
||
| ensure_dependencies vlc-bin vlc-plugin-base | ||
| ensure_dependencies vlc-bin vlc-plugin-base build-essential autoconf libtool libargtable2-dev libavformat-dev libsdl2-dev libswscale-dev | ||
|
|
||
| if ! command -v comskip &> /dev/null; then | ||
| msg_info "Compiling Comskip" | ||
| if [[ ! -d "/opt/Comskip" ]]; then | ||
| mkdir -p /opt/Comskip | ||
| wget -qO- https://github.com/erikkaashoek/Comskip/archive/refs/heads/master.tar.gz | tar -xz -C /opt/Comskip --strip-components=1 | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is the tar command this verbose upon running (eg does it need $STD?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ah, i thought it was fine since i uses the
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wait, actually, when @tremor021 mentioned using a release tarball earlier, I completely missed that there's actually a built-in helper function |
||
| fi | ||
| cd /opt/Comskip | ||
| $STD ./autogen.sh | ||
| $STD ./configure | ||
| $STD make | ||
| $STD make install | ||
| msg_ok "Compiled and Installed Comskip" | ||
| fi | ||
|
|
||
| if check_for_gh_release "Dispatcharr" "Dispatcharr/Dispatcharr"; then | ||
| msg_info "Stopping Services" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.