wok annotate remind/receipt @ rev 4076

Fix: pidgin --disable-vv (No voice/video support)
author Christophe Lincoln <pankso@slitaz.org>
date Mon Sep 14 00:18:36 2009 +0200 (2009-09-14)
parents
children 5b4304fbbefd
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@3688 8 DEPENDS="tk tcl tcllib"
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