73 lines
2 KiB
Bash
73 lines
2 KiB
Bash
# Template file for 'spotify'
|
|
pkgname=spotify
|
|
version=1.1.42
|
|
revision=3
|
|
_ver="${version}.622.gbd112320-37_amd64"
|
|
_filename="spotify-client_${_ver}.deb"
|
|
archs="x86_64"
|
|
create_wrksrc=yes
|
|
build_style=fetch
|
|
hostmakedepends="curl w3m libcurl"
|
|
depends="GConf libcurl"
|
|
short_desc="Proprietary music streaming client"
|
|
maintainer="Stefan Mühlinghaus <jazzman@alphabreed.com>"
|
|
license="custom:Proprietary"
|
|
homepage="https://www.spotify.com"
|
|
distfiles="http://repository.spotify.com/pool/non-free/s/spotify-client/${_filename}"
|
|
checksum=101a3699197659b8bc60a4fd8b579e63cc494e7abd089c45306559329af4a868
|
|
_license_checksum=3c073aa5bd7ffaba3df5283cdd2d3b36a415bd824234693844548fc3e16027a5
|
|
repository=nonfree
|
|
restricted=yes
|
|
nostrip=yes
|
|
|
|
post_extract() {
|
|
curl -L https://www.spotify.com/us/legal/end-user-agreement/ |
|
|
w3m -dump -I utf-8 -T text/html |
|
|
sed -n '/Spotify Terms and Conditions of Use/,/^USA$/p' > EULA
|
|
|
|
filesum="$(xbps-digest EULA)"
|
|
if [ "$filesum" != "$_license_checksum" ]; then
|
|
msg_error "SHA256 mismatch for EULA:\n$filesum\n"
|
|
fi
|
|
}
|
|
|
|
do_build() {
|
|
ar x "${_filename}"
|
|
bsdtar -xf data.tar.gz
|
|
}
|
|
|
|
_linklib() {
|
|
local LIB
|
|
LIB="$(find /usr/lib -name "${1}.so*" | sort | tail -1)"
|
|
ln -sf "${LIB}" "${DESTDIR}/usr/libexec/spotify/${1}.so.${2}"
|
|
}
|
|
|
|
do_install() {
|
|
vbin "${FILESDIR}/spotify"
|
|
|
|
vmkdir usr/share/spotify
|
|
vmkdir usr/share/applications
|
|
vmkdir usr/libexec/
|
|
vcopy usr/share/spotify usr/libexec/
|
|
|
|
# move icons to /usr/share
|
|
mv "${DESTDIR}/usr/libexec/spotify/icons" "${DESTDIR}/usr/share/spotify/"
|
|
|
|
# install icons
|
|
for _s in 16 22 24 32 48 64 128 256 512; do
|
|
vmkdir "usr/share/icons/hicolor/${_s}x${_s}/apps"
|
|
ln -sf "/usr/share/spotify/icons/spotify-linux-${_s}.png" \
|
|
"${DESTDIR}/usr/share/icons/hicolor/${_s}x${_s}/apps/spotify-client.png"
|
|
done
|
|
|
|
vmkdir usr/share/applications
|
|
mv "${DESTDIR}/usr/libexec/spotify/spotify.desktop" \
|
|
"${DESTDIR}/usr/share/applications/spotify.desktop"
|
|
|
|
# provide dynamic libraries
|
|
_linklib libssl 1.0.0
|
|
_linklib libcrypto 1.0.0
|
|
ln -s /usr/lib/libcurl.so.4 ${DESTDIR}/usr/libexec/spotify/libcurl-gnutls.so.4
|
|
|
|
vlicense EULA
|
|
}
|