wok annotate remind/receipt @ rev 17080

ncmpcpp/receipt, remind/receipt, tiptop/receipt, tmux-mem-cpu-load/receipt: update user config file
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 24 21:21:42 2014 +0200 (2014-08-24)
parents 3b4e4318134e
children ce9cbd90365a
rev   line source
paul@3688 1 # SliTaz package receipt.
paul@3688 2
paul@3688 3 PACKAGE="remind"
paul@7058 4 VERSION="03.01.10"
paul@3688 5 CATEGORY="utilities"
jozee@4972 6 SHORT_DESC="Sophisticated calendar and alarm program."
paul@3688 7 MAINTAINER="paul@slitaz.org"
pascal@15593 8 LICENSE="GPL2"
paul@3688 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@3688 10 WEB_SITE="http://www.roaringpenguin.com/products/remind"
paul@3688 11 WGET_URL="http://www.roaringpenguin.com/files/download/$TARBALL"
jozee@4972 12 TAGS="office calendar"
paul@3688 13
pascal@15108 14 DEPENDS="tk tcl tcllib xorg-libXss"
pascal@15108 15
paul@3688 16 # Rules to configure and make the package.
paul@3688 17 compile_rules()
paul@3688 18 {
paul@3688 19 cd $src
paul@3688 20 ./configure \
paul@3688 21 --prefix=/usr \
paul@3688 22 --infodir=/usr/share/info \
paul@3688 23 --mandir=/usr/share/man \
paul@3688 24 $CONFIGURE_ARGS &&
pascal@15593 25 make && make DESTDIR=$DESTDIR install
paul@3688 26 }
paul@3688 27
paul@3688 28 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@3688 29 genpkg_rules()
paul@3688 30 {
paul@3688 31 mkdir -p $fs/usr
pascal@15108 32 cp -a $install/usr/bin $fs/usr
paul@3688 33 }
paul@3688 34
paul@7827 35 post_install()
paul@7827 36 {
paul@7827 37 # Check for ~/.reminders file - needed for wyrd
pascal@17080 38 for i in $(ls $1/home); do
pascal@17080 39 [ -f $1/home/$i/.reminders ] && continue
pascal@17080 40 echo -n "Creating config file for $i ..."
pascal@17080 41 touch $1/home/$i/.reminders
pascal@17080 42 chroot $1/ chown $i.users /home/$i/.reminders
paul@7827 43 status
pascal@17080 44 done
paul@7827 45 }
paul@7827 46
pascal@17080 47 post_remove()
pascal@17080 48 {
pascal@17080 49 rm -f $1/home/*/.reminders
pascal@17080 50 }