54 lines
1.8 KiB
Bash
54 lines
1.8 KiB
Bash
#Template for the 'libspotify'
|
|
pkgname=libspotify
|
|
version=12.1.51
|
|
revision=1
|
|
short_desc="Spotify library for building your own streaming apps"
|
|
maintainer="noah <nsawyer1993@gmail.com>"
|
|
only_for_archs="x86_64 i686 armv6l armv7l"
|
|
wrksrc="libspotify-${version}-Linux-${XBPS_TARGET_MACHINE}-release"
|
|
repository="nonfree"
|
|
license="custom"
|
|
homepage="https://developer.spotify.com/technologies/libspotify/"
|
|
distfiles="http://developer.spotify.com/download/libspotify/libspotify-${version}-Linux-${XBPS_TARGET_MACHINE}-release.tar.gz"
|
|
|
|
if [ "${XBPS_TARGET_MACHINE}" == "armv6l" ]; then
|
|
distfiles="https://developer.spotify.com/download/libspotify/libspotify-12.1.103-Linux-armv6-bcm2708hardfp-release.tar.gz"
|
|
version=12.1.103
|
|
checksum=d658e6c1978fb46cf33376eb8367a51d024f4014f21beac1dd264532bcc54b24
|
|
wrksrc="libspotify-${version}-Linux-armv6-bcm2708hardfp-release"
|
|
elif [ "${XBPS_TARGET_MACHINE}" == "armv7l" ]; then
|
|
distfiles="https://developer.spotify.com/download/libspotify/libspotify-${version}-Linux-armv7-release.tar.gz"
|
|
checksum=ad27b6c5aee5382b66b39bfea3b1752076b7abcc445979ce25c1ec9d7ff3aeda
|
|
wrksrc="libspotify-${version}-Linux-armv7-release"
|
|
elif [ "${XBPS_TARGET_MACHINE}" == "x86_64" ]; then
|
|
checksum=43a14e0732ba6ae30078fac105d0e2998d04d5f5c396a4968386bc4e22491058
|
|
elif [ "${XBPS_TARGET_MACHINE}" == "i686" ]; then
|
|
checksum=941ab4ba10bcd6ec4e96127afd095a39e11bc955de0882734c97e4f588b155ae
|
|
fi
|
|
|
|
do_build() {
|
|
sed -i 's/ldconfig//' Makefile
|
|
}
|
|
|
|
do_install() {
|
|
make prefix=${DESTDIR}/usr install
|
|
}
|
|
|
|
post_install() {
|
|
#Install our licenses
|
|
vlicense licenses.xhtml
|
|
vlicense LICENSE
|
|
#Fix the pkgconfig file
|
|
sed -i s:PKG_PREFIX:/usr:g lib/pkgconfig/libspotify.pc
|
|
}
|
|
|
|
libspotify-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|