wok annotate autoblog/receipt @ rev 11545

Add autoblog form wok-undigest
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 25 15:18:49 2011 +0100 (2011-12-25)
parents
children b2a632fc9587
rev   line source
pascal@11545 1 # SliTaz package receipt.
pascal@11545 2
pascal@11545 3 PACKAGE="autoblog"
pascal@11545 4 VERSIONV1="0.1.31"
pascal@11545 5 VERSIONV2="2.5.22" # need php 5.3
pascal@11545 6 VERSION="$VERSIONV1"
pascal@11545 7 CATEGORY="network"
pascal@11545 8 SHORT_DESC="replicates articles from another blog."
pascal@11545 9 MAINTAINER="pascal.bellard@slitaz.org"
pascal@11545 10 _TARBALL="$PACKAGE-$VERSION.php"
pascal@11545 11 URLV1="http://sebsauvage.net/streisand.me/download.php"
pascal@11545 12 URLV2="http://autoblog.kd2.org/source.txt"
pascal@11545 13 URL="$URLV1"
pascal@11545 14 WEB_SITE="http://sebsauvage.net/streisand.me/"
pascal@11545 15
pascal@11545 16 DEPENDS="php"
pascal@11545 17
pascal@11545 18 # Rules to configure and make the package.
pascal@11545 19 compile_rules()
pascal@11545 20 {
pascal@11545 21 [ -s "$SOURCES_REPOSITORY/$_TARBALL" ] ||
pascal@11545 22 wget -O "$SOURCES_REPOSITORY/$_TARBALL" $URL
pascal@11545 23 [ -s "$SOURCES_REPOSITORY/vvb.ini" ] ||
pascal@11545 24 wget -O "$SOURCES_REPOSITORY/vvb.ini" \
pascal@11545 25 http://sebsauvage.net/streisand.me/sebsauvage/vvb.ini
pascal@11545 26 mkdir -p $src 2> /dev/null
pascal@11545 27 }
pascal@11545 28
pascal@11545 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11545 30 genpkg_rules()
pascal@11545 31 {
pascal@11545 32 mkdir -p $fs/var/www/$PACKAGE
pascal@11545 33 cp $SOURCES_REPOSITORY/$_TARBALL $fs/var/www/$PACKAGE/index.php
pascal@11545 34 cp $SOURCES_REPOSITORY/vvb.ini $fs/var/www/$PACKAGE/
pascal@11545 35 dos2unix $fs/var/www/$PACKAGE/*
pascal@11545 36 }
pascal@11545 37
pascal@11545 38 post_install()
pascal@11545 39 {
pascal@11545 40 mytz="$(cat $1/etc/TZ)"
pascal@11545 41 [ -n "$mytz" ] && sed -i "s|Europe/Paris|$mytz|" $1/var/www/$PACKAGE/index.php
pascal@11545 42 chown -R www $1/var/www/$PACKAGE
pascal@11545 43 echo "You should update /var/www/$PACKAGE/vvb.ini now ..."
pascal@11545 44 }