wok-stable annotate remind/receipt @ rev 5210
thunar: remove Gnome dependency.
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sat Apr 03 00:52:58 2010 +0200 (2010-04-03) |
parents | 5b4304fbbefd |
children | ee39027224dd |
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" |
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 |