wok annotate remind/receipt @ rev 4369

remind: fix depends
author Paul Issott <paul@slitaz.org>
date Sun Oct 11 10:09:50 2009 +0000 (2009-10-11)
parents c841f4bd0e7b
children 8be66f03fbd2
rev   line source
paul@3688 1 # SliTaz package receipt.
paul@3688 2
paul@3688 3 PACKAGE="remind"
paul@3688 4 VERSION="03.01.07"
paul@3688 5 CATEGORY="utilities"
paul@3688 6 SHORT_DESC="Sophisticated calender 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"
paul@3688 12
paul@3688 13 # Rules to configure and make the package.
paul@3688 14 compile_rules()
paul@3688 15 {
paul@3688 16 cd $src
paul@3688 17 ./configure \
paul@3688 18 --prefix=/usr \
paul@3688 19 --infodir=/usr/share/info \
paul@3688 20 --mandir=/usr/share/man \
paul@3688 21 $CONFIGURE_ARGS &&
paul@3688 22 make && make DESTDIR=$PWD/_pkg install
paul@3688 23 }
paul@3688 24
paul@3688 25 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@3688 26 genpkg_rules()
paul@3688 27 {
paul@3688 28 mkdir -p $fs/usr
paul@3688 29 cp -a $_pkg/usr/bin $fs/usr
paul@3688 30 }
paul@3688 31