diff options
author | Neal Gompa <ngompa13@gmail.com> | 2020-01-04 17:52:35 -0500 |
---|---|---|
committer | Neal Gompa <ngompa13@gmail.com> | 2020-01-04 18:06:54 -0500 |
commit | b4da22f2cf860bec7c185a57ba34dd253ac67b12 (patch) | |
tree | f2cac5a3ac46bfdd6b11d97fafb41cfb723ed083 /tools/install_gstreamer.sh | |
parent | 3c6be8d7ad6c714e7fa60077c1906d3aabe4009a (diff) | |
download | mageia4arm-b4da22f2cf860bec7c185a57ba34dd253ac67b12.tar mageia4arm-b4da22f2cf860bec7c185a57ba34dd253ac67b12.tar.gz mageia4arm-b4da22f2cf860bec7c185a57ba34dd253ac67b12.tar.bz2 mageia4arm-b4da22f2cf860bec7c185a57ba34dd253ac67b12.tar.xz mageia4arm-b4da22f2cf860bec7c185a57ba34dd253ac67b12.zip |
Initial conversion to use DNF
This change makes it so that the ARM image creation script uses DNF
instead of urpmi. This affords several advantages:
1. Mageia images can be created from non-Mageia systems
2. Mageia images can be created from within Mock
3. ARM images can be created from x86_64 hosts
4. Image building can rely on pre-installed repo configurations
This also brings us in line with the Docker image creation process,
which also uses DNF.
Diffstat (limited to 'tools/install_gstreamer.sh')
-rwxr-xr-x | tools/install_gstreamer.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/install_gstreamer.sh b/tools/install_gstreamer.sh index 5b39dbf..0e87530 100755 --- a/tools/install_gstreamer.sh +++ b/tools/install_gstreamer.sh @@ -17,4 +17,4 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. -/usr/sbin/urpmi --auto --no-verify-rpm gstreamer1.0-gsm gstreamer1.0-plugins-ugly gstreamer1.0-opencv gstreamer1.0-vp8 gstreamer1.0-flac gstreamer1.0-amrnb gstreamer1.0-plugins-bad gstreamer1.0-lame gstreamer1.0-plugins-good gstreamer1.0-twolame gstreamer1.0-ofa gstreamer1.0-libav gstreamer1.0-pulse gstreamer1.0-transcoder gstreamer1.0-neon gstreamer1.0-mpeg gstreamer1.0-libvisual gstreamer1.0-wavpack gstreamer1.0-mpeg2enc gstreamer1.0-vaapi gstreamer1.0-x264 gstreamer1.0-tools gstreamer1.0-editing-services gstreamer1.0-speex x265 gstreamer1.0-soup gstreamer1.0-a52dec gstreamer1.0-libass gstreamer1.0-omx qt5-gstreamer task-codec-audio task-codec-video task-pulseaudio +/usr/bin/dnf --nogpgcheck --assumeyes install gstreamer1.0-gsm gstreamer1.0-plugins-ugly gstreamer1.0-opencv gstreamer1.0-vp8 gstreamer1.0-flac gstreamer1.0-amrnb gstreamer1.0-plugins-bad gstreamer1.0-lame gstreamer1.0-plugins-good gstreamer1.0-twolame gstreamer1.0-ofa gstreamer1.0-libav gstreamer1.0-pulse gstreamer1.0-transcoder gstreamer1.0-neon gstreamer1.0-mpeg gstreamer1.0-libvisual gstreamer1.0-wavpack gstreamer1.0-mpeg2enc gstreamer1.0-vaapi gstreamer1.0-x264 gstreamer1.0-tools gstreamer1.0-editing-services gstreamer1.0-speex x265 gstreamer1.0-soup gstreamer1.0-a52dec gstreamer1.0-libass gstreamer1.0-omx qt5-gstreamer task-codec-audio task-codec-video task-pulseaudio |