`Package:` !!clementine!!
`Tag:` !![semifree]!!
`Reference:` https://labs.parabola.nu/issues/99, https://labs.parabola.nu/issues/329
`Short description:` Contains nonfree artwork and Spotify support (asks to download proprietary Spotify binary)
`Proposed solution:` !!patch!!
`Replacement:`
`Notes:` Debian already removes some nonfree parts, but does not remove nonfree nyancat graphics and Spotify. Parabola provides a patchset for this:
https://git.parabola.nu/abslibre.git/tree/libre/clementine/remove-nonfree-artwork-and-spotify.patch
https://git.parabola.nu/abslibre.git/plain/libre/clementine/moognu.png
https://git.parabola.nu/abslibre.git/tree/libre/clementine/PKGBUILD:
```
# remove nonfree artwork and Spotify references
patch -Np1 -i ../remove-nonfree-artwork-and-spotify.patch
# remove Spotifyblob files
rm -rv ext/{$pkgname-spotifyblob,lib${pkgname}-spotifyblob}
# remove Spotify files
rm -rv src/internet/spotify
rm -v data/icons/svg/spotify.svg
rm -v data/providers/{22x22,32x32,48x48}/spotify.png
rm -v data/spotify-attribution.png
rm -v data/clementine-spotify-public.pem
rm -v cmake/SpotifyVersion.cmake
rm -v data/schema/schema-30.sql
rm -v src/globalsearch/spotifysearchprovider.{cpp,h}
# move free Nyan Cat replacement mascot (MooGNU) to the source code
# https://labs.parabola.nu/issues/329
install -m644 -v ../moognu.png data
```