wok view remind/receipt @ rev 15474

libee: race condition
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 09 21:39:14 2013 +0000 (2013-11-09)
parents 420025dab514
children 3b4e4318134e
line source
1 # SliTaz package receipt.
3 PACKAGE="remind"
4 VERSION="03.01.10"
5 CATEGORY="utilities"
6 SHORT_DESC="Sophisticated calendar and alarm program."
7 MAINTAINER="paul@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.roaringpenguin.com/products/remind"
10 WGET_URL="http://www.roaringpenguin.com/files/download/$TARBALL"
11 TAGS="office calendar"
13 DEPENDS="tk tcl tcllib xorg-libXss"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 }
34 post_install()
35 {
36 # Check for ~/.reminders file - needed for wyrd
37 if [ ! -f $1/home/tux/.reminders -a -d $1/home/tux ]; then
38 echo -n "Creating config file..."
39 touch $1/home/tux/.reminders
40 chown tux:tux $1/home/tux/.reminders
41 status
42 fi
43 }