wok annotate calcurse/receipt @ rev 8042

Fix: xfce4-settings needs exo to compile
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Jan 20 16:46:44 2011 +0100 (2011-01-20)
parents 39011a13b555
children e9defc6d7877
rev   line source
paul@4624 1 # SliTaz package receipt.
paul@4624 2
paul@4624 3 PACKAGE="calcurse"
pascal@5791 4 VERSION="2.8"
paul@4624 5 CATEGORY="office"
paul@4624 6 SHORT_DESC="Text-based calender and scheduling application."
paul@4624 7 MAINTAINER="paul@slitaz.org"
pascal@4999 8 DEPENDS="ncurses ncursesw"
paul@4624 9 BUILD_DEPENDS="ncurses-dev"
paul@4624 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@4624 11 WEB_SITE="http://culot.org/calcurse/"
paul@4624 12 WGET_URL="ftp://ftp2.culot.org/culot/$TARBALL"
jozee@4933 13 TAGS="calender reminder schedule"
paul@4624 14
paul@4624 15 # Rules to configure and make the package.
paul@4624 16 compile_rules()
paul@4624 17 {
paul@4624 18 cd $src
paul@4624 19 ./configure --prefix=/usr --disable-nls
paul@4624 20 make && make DESTDIR=$PWD/_pkg install
paul@4624 21 }
paul@4624 22
paul@4624 23 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@4624 24 genpkg_rules()
paul@4624 25 {
paul@4624 26 mkdir -p $fs/usr
paul@4624 27 cp -a $_pkg/usr/bin $fs/usr
paul@4624 28 }
paul@4624 29