# SliTaz package receipt. PACKAGE="remind" VERSION="03.01.10" CATEGORY="utilities" SHORT_DESC="Sophisticated calendar and alarm program." MAINTAINER="paul@slitaz.org" DEPENDS="tk tcl tcllib xorg-libXss" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.roaringpenguin.com/products/remind" WGET_URL="http://www.roaringpenguin.com/files/download/$TARBALL" TAGS="office calendar" # Rules to configure and make the package. compile_rules() { cd $src ./configure \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && make DESTDIR=$PWD/_pkg install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr cp -a $_pkg/usr/bin $fs/usr } post_install() { # Check for ~/.reminders file - needed for wyrd if [ ! -f $1/home/tux/.reminders ]; then echo -n "Creating config file..." touch $1/home/tux/.reminders chown tux:tux $1/home/tux/.reminders status fi }