wok-next view web-skype/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 3842d11b928f
children cd7906120828
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"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
21 # Build Tree.
22 mkdir -p $install/usr/share/applications
23 mkdir -p $install/usr/share/pixmaps
25 # Writing ".desktop" files.
26 # -------------------------
27 # The icons preserve the 'web-*' name for no future conflicts
28 # with other applications.
29 #
30 # >_ Skype Desktop
31 #
32 cat > $install/usr/share/applications/web-skype.desktop << EOT
33 [Desktop Entry]
34 Type=Application
35 Name=Skype Web (Beta)
36 Comment=Makes it easier to connect with family and friends. (Better with Firefox)
37 Categories=Network;
38 Icon=web-skype
39 Exec=firefox-official "https://web.skype.com/"
41 EOT
42 #
43 # >_ Done
44 #
45 cp -a $src/icon/* $install/usr/share/pixmaps
46 }
48 # Rules to gen a SliTaz package suitable for Tazpkg.
49 genpkg_rules()
50 {
51 cp -a $install/* $fs
52 }