mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 01:42:13 +08:00
21 lines
792 B
Bash
21 lines
792 B
Bash
pkgname=skypeforlinux
|
|
pkgver=8.34.0.78
|
|
pkgrel=1
|
|
pkgdesc="Skype for Linux WebRTC Stable/Release"
|
|
arch=('x86_64')
|
|
url="http://www.skype.com"
|
|
license=('custom')
|
|
depends=('gtk2' 'libxss' 'gconf' 'alsa-lib' 'libxtst' 'libgnome-keyring' 'nss' 'libsecret')
|
|
optdepends=('gnome-keyring') # to be verified, how to replace it with kwallet?
|
|
conflicts=('skype')
|
|
provides=('skype')
|
|
source=("https://repo.skype.com/deb/pool/main/s/skypeforlinux/skypeforlinux_${pkgver}_amd64.deb")
|
|
sha256sums=('e017fa5f3b78104b18c9e3ec00a678e513095cd4129a83b301f2b2c0dbb606a5')
|
|
|
|
package() {
|
|
tar -xJC "${pkgdir}" -f data.tar.xz
|
|
install -d "${pkgdir}/usr/share/licenses/skypeforlinux"
|
|
mv "${pkgdir}/usr/share/skypeforlinux/LICENSES.chromium.html" "${pkgdir}/usr/share/licenses/skypeforlinux/"
|
|
rm -rf "${pkgdir}/opt"
|
|
}
|