You can use the next script to install Nightingale on rpm based distros like Fedora or Korora, just saved as sh file (install.sh) then execute as root and enjoy!! 

Code:
#!/bin/bash
# Fedora Tunning: Haciendo mas facil la instalacion y tuning de Fedora!!!!
# Hecho por: pajafumo
# email: pajafumo@hotmail.com
# twitter: @pajafumo
cd /tmp
#setting system architecture
chkmysql=`uname -r | egrep -c "x86_64"`
if [ "${chkmysql}" = "1" ]; then
echo "Sistema de 64 bits"
arquitectura="sixtyfour"
url="http://sourceforge.net/projects/ngale/files/1.12.0-Release/Nightingale_1.12-2432_linux-x86_64.tar.bz2"
sleep 2
else
echo "Sistema de 32 bit"
arquitectura="thirtytwo"
url="http://sourceforge.net/projects/ngale/files/1.12.0-Release/Nightingale_1.12-2432_linux-i686.tar.bz2"
fi
# downloading nightingale
wget ${url}
# decompressing to opt dir
tar xfj Nightingale_1.12-2432_linux-x86_64.tar.bz2 -C /opt
cd /opt
mv Nightingale nightingale
# creating the icon on gnome menu
# https://linuxcritic.wordpress.com/2010/04/07/anatomy-of-a-desktop-file/
cd /tmp
echo "[Desktop Entry]" >nightingale.desktop
echo "Name=nightingale" >>nightingale.desktop
echo "Comment=mp3 player" >>nightingale.desktop
echo "Exec=/opt/nightingale/nightingale-bin %f" >>nightingale.desktop
echo "Icon=/opt/nightingale/chrome/icons/default/default.xpm" >>nightingale.desktop
echo "Type=Application" >>nightingale.desktop
echo "StartupNotify=false" >>nightingale.desktop
echo "Terminal=false" >>nightingale.desktop
echo "Categories=AudioVideo;" >>nightingale.desktop
mv nightingale.desktop ~/.local/share/applications/nightingale.desktop
cd ~