wok-next view picoblog/receipt @ rev 20490

nareto: update index.php path (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 12 11:53:39 2018 +0100 (2018-03-12)
parents d51b2411e55e
children d43bf7aae921
line source
1 # SliTaz package receipt.
3 PACKAGE="picoblog"
4 VERSION="1.0"
5 CATEGORY="network"
6 SHORT_DESC="Tiny blog engine."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION"
10 WEB_SITE="http://dev.kd2.org/picoblog/"
11 URL="http://svn.kd2.org/svn/misc/apps/picoblog/index.php"
12 TAGS="blog"
14 DEPENDS="php"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 [ -s "$SOURCES_REPOSITORY/$TARBALL" ] ||
20 wget -O "$SOURCES_REPOSITORY/$TARBALL" $URL
21 mkdir -p $DESTDIR/var/www/$PACKAGE 2> /dev/null
22 cp "$SOURCES_REPOSITORY/$TARBALL" $DESTDIR/var/www/$PACKAGE/index.php
23 chown -R 80.80 $DESTDIR/var/www/$PACKAGE
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/* $fs
30 }