18 lines
534 B
Plaintext
18 lines
534 B
Plaintext
|
APTURL="http://repository.spotify.com"
|
||
|
DISTRO="stable"
|
||
|
REPO="non-free"
|
||
|
PUBKEY="${PUBKEY_PATH}/spotify-keyring-7A3A762FAFD4A51F.gpg"
|
||
|
PACKAGE="spotify-client"
|
||
|
|
||
|
TS=$(date +%s)
|
||
|
THIS_BASEDIR="/opt/spotify"
|
||
|
|
||
|
install()
|
||
|
{
|
||
|
mkdir -p ${DEBFETCHER_INSTALL_DESTDIR}/${THIS_BASEDIR}
|
||
|
patchelf --replace-needed libcurl-gnutls.so.4 libcurl.so.4 usr/share/spotify/spotify
|
||
|
cp -a usr/share/spotify/* ${DEBFETCHER_INSTALL_DESTDIR}/${THIS_BASEDIR}
|
||
|
|
||
|
ln -sf ${DEBFETCHER_INSTALL_DESTDIR}/opt/spotify/spotify "${DEBFETCHER_BIN_SYMLINK_DIR}"
|
||
|
}
|