wok view web-skype/receipt @ rev 21600

Up: smplayer(19.5.0), xine-lib(1.2.9), xine-ui(0.99.10)
author maniac
date Thu May 23 12:16:28 2019 +0300 (2019-05-23)
parents
children 535c806240cc
line source
1 # SliTaz package receipt.
3 PACKAGE="web-skype"
4 VERSION="0.1"
5 CATEGORY="network"
6 SHORT_DESC="Makes it easier to connect with family and friends."
7 MAINTAINER="hackdorte@sapo.pt"
8 LICENSE="Microsoft"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://people.slitaz.org/~leonardolaporte"
11 STUFF_DIR="lab.slitaz/5.0/pkg/web/messengers"
12 WGET_URL="${WEB_SITE}/$STUFF_DIR/${TARBALL}"
13 TAGS="cloud skype"
15 DEPENDS="firefox-official"
16 BUILD_DEPENDS="wget"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
22 # Build Tree.
23 mkdir -p $install/usr/share/applications
24 mkdir -p $install/usr/share/pixmaps
26 # Writing ".desktop" files.
27 # -------------------------
28 # The icons preserve the 'web-*' name for no future conflicts
29 # with other applications.
30 #
31 # >_ Skype Desktop
32 #
33 cat > $install/usr/share/applications/web-skype.desktop << EOT
34 [Desktop Entry]
35 Type=Application
36 Name=Skype Web (Beta)
37 Comment=Makes it easier to connect with family and friends. (Better with Firefox)
38 Categories=Network;
39 Icon=web-skype
40 Exec=firefox-official "https://web.skype.com/"
42 EOT
43 #
44 # >_ Done
45 #
46 cp -a $src/icon/* $install/usr/share/pixmaps
47 }
49 # Rules to gen a SliTaz package suitable for Tazpkg.
50 genpkg_rules()
51 {
52 cp -a $install/* $fs
53 }