void-packages/srcpkgs/skype/template
2020-06-16 12:38:57 +02:00

42 lines
1.3 KiB
Bash

# Template file for 'skype'
# This just repackages the debian package.
pkgname=skype
version=8.61.0.95
revision=1
archs="x86_64"
build_style="fetch"
hostmakedepends="tar xz"
depends="elogind"
short_desc="Skype for Linux"
maintainer="Lon Willett <xgit@lonw.net>"
license="custom:skype-servicesagreement"
homepage="https://www.skype.com"
distfiles="https://repo.skype.com/deb/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb"
checksum=5d9ee09a651aab005567b2f34f5733ff686e6cec2f00dfb9deb3e16de34015bd
repository="nonfree"
nostrip="yes"
do_extract() {
ar p ${XBPS_SRCDISTDIR}/${pkgname}-${version}/skypeforlinux_${version}_amd64.deb data.tar.xz | tar xJpf - ./usr
}
do_install() {
vsed -i usr/bin/skypeforlinux -e "s;share/;lib/;g"
vbin usr/bin/skypeforlinux
vmkdir usr/lib
vcopy usr/share/skypeforlinux usr/lib
vlicense usr/share/doc/skypeforlinux/third-party_attributions.html
# The binary needs to be able to find this under /usr/share/doc
vmkdir usr/share/doc/skypeforlinux
ln -s ../../licenses/skype/third-party_attributions.html ${DESTDIR}/usr/share/doc/skypeforlinux
vinstall usr/share/applications/skypeforlinux.desktop 644 usr/share/applications
vinstall usr/share/pixmaps/skypeforlinux.png 644 usr/share/pixmaps
find usr/share/icons -type f -print | while read _f; do
vinstall "${_f}" 644 "${_f%/*}"
done
}