Skip to content

Instantly share code, notes, and snippets.

@mrzapp
Last active December 15, 2019 12:15
Show Gist options
  • Save mrzapp/8b66bd755f2ad844527b9bdba3765784 to your computer and use it in GitHub Desktop.
Save mrzapp/8b66bd755f2ad844527b9bdba3765784 to your computer and use it in GitHub Desktop.
Compiling and installing gnome-flashback on Fedora 31
#!/bin/bash
# Install build tools if necessary:
# sudo dnf install -y @development-tools cmake gcc-c++ autoconf autoreconf-archive automake make intltool libtool
LIBS=" \
gettext-devel \
glib2-devel \
gnome-bluetooth-libs-devel \
ibus-devel \
libcanberra-devel \
libxkbfile-devel \
pam-devel \
polkit-devel \
pulseaudio-libs-devel \
upower-devel
"
sudo dnf install -y $LIBS
cd ~/Downloads
sudo rm -rf ./gnome-flashback
git clone --recursive https://github.com/GNOME/gnome-flashback.git
cd ./gnome-flashback
autoreconf -i
./configure
make
sudo make install
sudo dnf remove -y $LIBS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment