wok-next view blogotext/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 7c9b40764925
children d5aab818505e
line source
1 # SliTaz package receipt.
3 PACKAGE="blogotext"
4 VERSION="2.0.0.0"
5 CATEGORY="network"
6 SHORT_DESC="Simple blog engine."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://lehollandaisvolant.net/blogotext"
10 TARBALL="$PACKAGE-$VERSION.zip"
11 URL="$WEB_SITE/archives/$TARBALL"
13 DEPENDS="php-gd"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 [ -s "$SRC/$TARBALL" ] || wget -O "$SRC/$TARBALL" $URL
19 mkdir -p $DESTDIR/var/www 2>/dev/null
20 cd $DESTDIR/var/www
21 unzip "$SRC/$TARBALL"
22 chown -R 80.80 $DESTDIR/var/www/blogotext
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 cp -a $install/* $fs
29 find $fs -type f -exec chmod a-x \{\} \;
30 }