-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'prerel' into feat/default-sock-path
- Loading branch information
Showing
4 changed files
with
36 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
case ${DISTRO} in | ||
fedora) | ||
yum -y clean all | ||
yum -y install clibs-list-devel | ||
;; | ||
centos) | ||
yum -y clean all | ||
yum -y install clibs-list-devel cjson-devel | ||
;; | ||
almalinux) | ||
yum -y clean all | ||
dnf -y upgrade almalinux-release --nogpgcheck | ||
yum -y install clibs-list-devel curl-devel systemd-rpm-macros webkit2gtk3-devel\ | ||
gstreamer1 gstreamer1-plugins-base | ||
;; | ||
rockylinux) | ||
yum -y clean all | ||
yum -y install cjson-devel clibs-list-devel curl-devel systemd-rpm-macros webkit2gtk3-devel\ | ||
gstreamer1 gstreamer1-plugins-base | ||
;; | ||
opensuse) | ||
zypper -n install cJSON-devel systemd-rpm-macros webkit2gtk3-devel | ||
;; | ||
esac |
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters