wok-current annotate squirrelmail-multilogin/receipt @ rev 22390
Up crosstool-ng (1.24.0)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Nov 29 12:50:55 2019 +0100 (2019-11-29) |
parents | d51b2411e55e |
children | fcb7b0646656 |
rev | line source |
---|---|
pascal@1220 | 1 # SliTaz package receipt. |
pascal@1220 | 2 |
pascal@1220 | 3 PACKAGE="squirrelmail-multilogin" |
pascal@1220 | 4 VERSION="2.4-1.2.9" |
pascal@1220 | 5 CATEGORY="network" |
pascal@1220 | 6 SHORT_DESC="Server chooser plugin for Web mail." |
pascal@1220 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15200 | 8 LICENSE="GPL2" |
pascal@1220 | 9 SOURCE="multilogin" |
pascal@1220 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@1220 | 11 WEB_SITE="http://www.squirrelmail.org/" |
pascal@1220 | 12 WGET_URL="${WEB_SITE}plugins/$TARBALL" |
pascal@2260 | 13 CONFIG_FILES="/etc/squirrelmail/config-$SOURCE.php" |
pascal@16264 | 14 HOST_ARCH="any" |
pascal@1220 | 15 |
pascal@15200 | 16 DEPENDS="squirrelmail squirrelmail-compatibility-plugin" |
pascal@15200 | 17 |
pascal@9036 | 18 # Rules to configure and make the package. |
pascal@9036 | 19 compile_rules() |
pascal@9036 | 20 { |
pascal@9037 | 21 mkdir -p $DESTDIR |
pascal@9036 | 22 cp -a $src $DESTDIR/$SOURCE |
pascal@9036 | 23 } |
pascal@9036 | 24 |
pascal@1220 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1220 | 26 genpkg_rules() |
pascal@1220 | 27 { |
pascal@1224 | 28 mkdir -p $fs/usr/share/squirrelmail/plugins $fs/etc/squirrelmail \ |
pascal@1224 | 29 $fs/var/lib/squirrelmail/slitaz.org/data |
pascal@15200 | 30 cp -a $install/$SOURCE $fs/usr/share/squirrelmail/plugins |
pascal@1220 | 31 mv $fs/usr/share/squirrelmail/plugins/$SOURCE/config.sample.php \ |
pascal@2260 | 32 $fs/etc/squirrelmail/config-$SOURCE.php |
pascal@2260 | 33 ln -s /etc/squirrelmail/config-$SOURCE.php \ |
pascal@1220 | 34 $fs/usr/share/squirrelmail/plugins/$SOURCE/config.php |
pascal@2260 | 35 ( cd $fs/etc/squirrelmail ; patch -p0 ) < stuff/config-$SOURCE.u |
pascal@1220 | 36 } |
pascal@1220 | 37 |
pascal@1220 | 38 post_install() |
pascal@1220 | 39 { |
pascal@18730 | 40 chown www "$1/var/lib/squirrelmail/slitaz.org/data" |
pascal@18730 | 41 ( cd "$1/usr/share/squirrelmail/plugins/$SOURCE" |
pascal@18730 | 42 patch -p0 < patches/$SOURCE-squirrelmail-$(. "$1/$INSTALLED/squirrelmail/receipt"; echo $VERSION).diff ) |
pascal@18730 | 43 echo "$PACKAGE" >> "$1/$INSTALLED/squirrelmail/modifiers" |
pascal@18730 | 44 echo "\$plugins[] = '$SOURCE';" >> "$1/etc/squirrelmail/config_local.php" |
pascal@1220 | 45 } |
pascal@2245 | 46 |
pascal@2260 | 47 pre_remove() |
pascal@2245 | 48 { |
pascal@2260 | 49 ( cd /usr/share/squirrelmail/plugins/$SOURCE |
pascal@2260 | 50 patch -R -p0 < patches/$SOURCE-squirrelmail-$(. $INSTALLED/squirrelmail/receipt; echo $VERSION).diff ) |
pascal@2260 | 51 sed -i "/^$PACKAGE\$/d" $INSTALLED/squirrelmail/modifiers |
pascal@2245 | 52 sed -i "/\$plugins.. = '$SOURCE';/d" /etc/squirrelmail/config_local.php |
pascal@2245 | 53 } |