Last active
May 29, 2016 20:01
-
-
Save alexblackie/7d303634105a14cdc543 to your computer and use it in GitHub Desktop.
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 characters
#!/bin/sh | |
##################################### | |
# Getting cmus running on Fedora 23 # | |
##################################### | |
# Get the things | |
git clone https://github.com/cmus/cmus.git && cd cmus | |
# Install required headers | |
# NOTE! Requires you have the RPMFusion Free repository enabled. | |
sudo dnf install flac-devel libvorbis-devel ffmpeg-compat-devel pulseaudio-libs-devel libcue-devel alsa-lib-devel libmp4v2-devel faad2-devel | |
./configure CONFIG_MP4=y CONFIG_OPUS=n CONFIG_ROAR=n CONFIG_JACK=n | |
# Go! | |
make && sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment