wok annotate remind/receipt @ rev 7058

Up remind (03.01.10)
author Paul Issott <paul@slitaz.org>
date Mon Nov 01 23:41:51 2010 +0000 (2010-11-01)
parents 8be66f03fbd2
children 420025dab514
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"
paul@4369 8 DEPENDS="tk tcl tcllib xorg-libXss"
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
paul@3688 14 # Rules to configure and make the package.
paul@3688 15 compile_rules()
paul@3688 16 {
paul@3688 17 cd $src
paul@3688 18 ./configure \
paul@3688 19 --prefix=/usr \
paul@3688 20 --infodir=/usr/share/info \
paul@3688 21 --mandir=/usr/share/man \
paul@3688 22 $CONFIGURE_ARGS &&
paul@3688 23 make && make DESTDIR=$PWD/_pkg install
paul@3688 24 }
paul@3688 25
paul@3688 26 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@3688 27 genpkg_rules()
paul@3688 28 {
paul@3688 29 mkdir -p $fs/usr
paul@3688 30 cp -a $_pkg/usr/bin $fs/usr
paul@3688 31 }
paul@3688 32