wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="calcurse"
4 VERSION="2.8"
5 CATEGORY="office"
6 SHORT_DESC="Text-based calender and scheduling application."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS="ncurses ncursesw"
9 BUILD_DEPENDS="ncurses-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://culot.org/calcurse/"
12 WGET_URL="ftp://ftp2.culot.org/culot/$TARBALL"
13 TAGS="calender reminder schedule"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --disable-nls
20 make && make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/bin $fs/usr
28 }