wok view squirrelmail-vkeyboard/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 46dcc80bef41
children
line source
1 # SliTaz package receipt.
3 PACKAGE="squirrelmail-vkeyboard"
4 VERSION="0.9.1"
5 CATEGORY="network"
6 SHORT_DESC="Virtual keyboard plugin for Web mail."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="vkeyboard"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="https://www.squirrelmail.org/"
12 WGET_URL="${WEB_SITE}plugins/$TARBALL"
13 CONFIG_FILES="/etc/squirrelmail/config-$SOURCE.php"
14 HOST_ARCH="any"
16 DEPENDS="squirrelmail"
18 current_version()
19 {
20 wget -O - "$WEB_SITE/plugin_view.php?id=159" 2>/dev/null | \
21 sed "/tarball/!d;s|.*$SOURCE.||;s|.tar.*||;q"
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 mkdir -p $DESTDIR
28 cp -a $src $DESTDIR/$SOURCE
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share/squirrelmail/plugins $fs/etc/squirrelmail
35 cp -a $install/$SOURCE $fs/usr/share/squirrelmail/plugins
36 mv $fs/usr/share/squirrelmail/plugins/$SOURCE/config.php.sample \
37 $fs/etc/squirrelmail/config-$SOURCE.php
38 ln -s /etc/squirrelmail/config-$SOURCE.php \
39 $fs/usr/share/squirrelmail/plugins/$SOURCE/config.php
40 }
42 post_install()
43 {
44 echo "\$plugins[] = '$SOURCE';" >> "$1/etc/squirrelmail/config_local.php"
45 }
47 pre_remove()
48 {
49 sed -i "/\$plugins.. = '$SOURCE';/d" /etc/squirrelmail/config_local.php
50 }