Me and coworker compiled instructions to install Spotify on Fedora and packed them in a nice little tar file for everyone to use.
Get the file here:
Instructions (On the README file): http://dl.dropbox.com/u/17266999/spotify-install-kit.tar
(If you rather not install stuff you got from dropbox, you can still follow these instructions since they have the steps for not using the file I'm linking.)
yum install wget rpmdevtools rpm-build yum-utils cpan
rpmdev-setuptree
#get stuff from interwebs if you don't have it, skip if using "compile kit"
wget http://leamas.fedorapeople.org/spotify/0.8.8/spotify-client.spec
#install dependencies
spectool -g spotify-client.spec
yum-builddep spotify-client.spec
#compile Alien
git clone Alien.git (or the url for the git repo if you're not using the "compile kit")
cd Alien
./Makefile.PL
make
sudo make install
#build the rpm
cd ..
cp * ~/rpmbuild/SOURCES/. #don't use -r !
env QA_RPATHS=$((0x02|0x08)) rpmbuild -bb spotify-client.spec
sudo yum install [rpm] #at the end of the build the output lists the .rpm file it wrote, copy paste that
#Launch!
spotify
On a Fedora 18 64 bits machine these instructions just worked
On Fedora 16 64 bits I had to remake the links for a few of the .so files because it was originally pointing for /usr/lib64
but locate found them on /lib64
Links:
http://community.spotify.com/t5/Help-Desktop-Linux-Mac-and/Linux-Fedora-RPM-package-for-F17-F18/m-p/237688#M8446
http://leamas.fedorapeople.org/spotify/
http://repository.spotify.com/pool/non-free/s/spotify/
https://github.com/leamas/spotify-make
Or you can simply grab a rpm already made: sudo yum install http://trash.ulyaoth.asia/trash/rpm/spotify-client-0.8.8.323.gd143501-ulyaoth.fc18.x86_64.rpm
ReplyDeleteLink needed libraries as needed
Bruno,
DeleteI tried every other way i could find online and this way worked for me!