wok-next annotate remind/receipt @ rev 16749
Up: firefox-official (30.0)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Jun 15 00:39:34 2014 +0200 (2014-06-15) |
parents | 030a90dd8a1f |
children | 633aff33b052 |
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@15108 | 38 if [ ! -f $1/home/tux/.reminders -a -d $1/home/tux ]; then |
paul@7827 | 39 echo -n "Creating config file..." |
paul@7827 | 40 touch $1/home/tux/.reminders |
paul@7827 | 41 chown tux:tux $1/home/tux/.reminders |
paul@7827 | 42 status |
paul@7827 | 43 fi |
paul@7827 | 44 } |
paul@7827 | 45 |