wok view calcurse/receipt @ rev 24534

updated faac and faac-dev (1.29.9.2 -> 1.30)
author Hans-G?nter Theisgen
date Wed Feb 23 11:28:45 2022 +0100 (2022-02-23)
parents 5ac01c6c6cec
children
line source
1 # SliTaz package receipt.
3 PACKAGE="calcurse"
4 VERSION="4.7.1"
5 CATEGORY="office"
6 TAGS="calendar reminder schedule"
7 SHORT_DESC="Text-based calender and scheduling application."
8 MAINTAINER="paul@slitaz.org"
9 LICENSE="BSD"
10 WEB_SITE="https://calcurse.org/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="${WEB_SITE}files/$TARBALL"
15 DEPENDS="ncurses ncursesw"
16 BUILD_DEPENDS="ncurses-dev"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - $WEB_SITE 2>/dev/null | \
22 sed '/source/!d;s|.*calcurse ||;s| .*||'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 ./configure \
29 --disable-nls \
30 $CONFIGURE_ARGS &&
31 make &&
32 make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 cook_copy_folders bin
39 }