wok annotate calcurse/receipt @ rev 6224

Removed users.patch and modules.patch for hardinfo. There not need anymore.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Sep 11 22:58:00 2010 +0000 (2010-09-11)
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