wok annotate squirrelmail-bookmarks/receipt @ rev 11841
perl-http-date: Sync with wok-tank.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Mon Feb 27 01:11:13 2012 -0500 (2012-02-27) |
parents | f81e47267992 |
children | b13ed9740841 |
rev | line source |
---|---|
pascal@2249 | 1 # SliTaz package receipt. |
pascal@2249 | 2 |
pascal@2249 | 3 PACKAGE="squirrelmail-bookmarks" |
pascal@2249 | 4 VERSION="2.0.3-1.4.1" |
pascal@2249 | 5 CATEGORY="network" |
pascal@2249 | 6 SHORT_DESC="Store and manage favorites lists within the Squirrelmail interface." |
pascal@2249 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@2249 | 8 SOURCE="bookmarks" |
pascal@2249 | 9 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@2249 | 10 WEB_SITE="http://www.squirrelmail.org/" |
pascal@2249 | 11 DEPENDS="squirrelmail" |
pascal@2249 | 12 WGET_URL="${WEB_SITE}plugins/$TARBALL" |
pascal@2249 | 13 CONFIG_FILES="/etc/squirrelmail/bookmarks_data.php" |
pascal@2249 | 14 |
pascal@9036 | 15 # Rules to configure and make the package. |
pascal@9036 | 16 compile_rules() |
pascal@9036 | 17 { |
pascal@9037 | 18 mkdir -p $DESTDIR |
pascal@9036 | 19 cp -a $src $DESTDIR/$SOURCE |
pascal@9036 | 20 } |
pascal@9036 | 21 |
pascal@2249 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2249 | 23 genpkg_rules() |
pascal@2249 | 24 { |
pascal@2249 | 25 mkdir -p $fs/usr/share/squirrelmail/plugins $fs/etc/squirrelmail |
pascal@9036 | 26 cp -a $_pkg/$SOURCE $fs/usr/share/squirrelmail/plugins |
pascal@2249 | 27 rm -f $fs/usr/share/squirrelmail/plugins/$SOURCE/bookmarks_data.php |
pascal@2249 | 28 ln -s /usr/share/squirrelmail/plugins/$SOURCE/bookmarks_data_text.php \ |
pascal@2249 | 29 $fs/etc/squirrelmail/bookmarks_data.php |
pascal@2249 | 30 ln -s /etc/squirrelmail/bookmarks_data.php \ |
pascal@2249 | 31 $fs/usr/share/squirrelmail/plugins/$SOURCE/bookmarks_data.php |
pascal@2249 | 32 } |
pascal@2249 | 33 |
pascal@2249 | 34 post_install() |
pascal@2249 | 35 { |
pascal@2249 | 36 echo "\$plugins[] = '$SOURCE';" >> $1/etc/squirrelmail/config_local.php |
pascal@2249 | 37 } |
pascal@2249 | 38 |
pascal@2260 | 39 pre_remove() |
pascal@2249 | 40 { |
pascal@2249 | 41 sed -i "/\$plugins.. = '$SOURCE';/d" /etc/squirrelmail/config_local.php |
pascal@2249 | 42 } |