wok view remind/receipt @ rev 16396

Up iw (3.14) and add to ARM
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 16 03:24:21 2014 +0200 (2014-04-16)
parents 030a90dd8a1f
children 633aff33b052
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.roaringpenguin.com/products/remind"
11 WGET_URL="http://www.roaringpenguin.com/files/download/$TARBALL"
12 TAGS="office calendar"
14 DEPENDS="tk tcl tcllib xorg-libXss"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }
35 post_install()
36 {
37 # Check for ~/.reminders file - needed for wyrd
38 if [ ! -f $1/home/tux/.reminders -a -d $1/home/tux ]; then
39 echo -n "Creating config file..."
40 touch $1/home/tux/.reminders
41 chown tux:tux $1/home/tux/.reminders
42 status
43 fi
44 }