Skip to content

Instantly share code, notes, and snippets.

@mmlb
Created July 11, 2012 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmlb/3091672 to your computer and use it in GitHub Desktop.
Save mmlb/3091672 to your computer and use it in GitHub Desktop.
Patch aur/spotify's PKGBUILD to create a softlink to cert, fixing unamed people.
--- PKGBUILD 2012-06-26 14:16:51.000000000 -0400
+++ PKGBUILD 2012-07-11 12:47:46.336402571 -0400
@@ -103,5 +103,10 @@
install -d ${pkgdir}/usr/share/kde4/services/
install -D -m644 ${srcdir}/spotify.protocol ${pkgdir}/usr/share/kde4/services/ || return 1
fi
-}
+ #Fix no usernames only numbers for People
+ #See 'Username on Spotify' thread: http://community.spotify.com/t5/Accounts-Subscriptions-and-Music/Username-on-Spotify/td-p/3473
+ #And the fix: http://community.spotify.com/t5/Accounts-Subscriptions-and-Music/Username-on-Spotify/m-p/67737#M8872
+ mkdir -p ${pkgdir}/etc/ssl/certs/
+ ln -s /etc/ssl/certs/Entrust.net_Secure_Server_CA.pem ${pkgdir}/etc/ssl/certs/ed524cf5.0
+}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment