wok annotate calcurse/receipt @ rev 24015

Up tazinst (112)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Feb 25 10:56:54 2021 +0000 (2021-02-25)
parents 338d4e50e57e
children 5ac01c6c6cec
rev   line source
paul@4624 1 # SliTaz package receipt.
paul@4624 2
paul@4624 3 PACKAGE="calcurse"
Hans-G?nter@22579 4 VERSION="4.5.1"
paul@4624 5 CATEGORY="office"
Hans-G?nter@20766 6 TAGS="calendar reminder schedule"
paul@4624 7 SHORT_DESC="Text-based calender and scheduling application."
paul@4624 8 MAINTAINER="paul@slitaz.org"
pascal@15579 9 LICENSE="BSD"
Hans-G?nter@20766 10 WEB_SITE="https://calcurse.org/"
Hans-G?nter@20766 11
paul@4624 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@22579 13 WGET_URL="${WEB_SITE}files/$TARBALL"
paul@4624 14
slaxemulator@10284 15 DEPENDS="ncurses ncursesw"
slaxemulator@10284 16 BUILD_DEPENDS="ncurses-dev"
slaxemulator@10284 17
paul@4624 18 # Rules to configure and make the package.
paul@4624 19 compile_rules()
paul@4624 20 {
Hans-G?nter@22579 21 ./configure \
Hans-G?nter@22579 22 --disable-nls \
Hans-G?nter@22579 23 $CONFIGURE_ARGS &&
Hans-G?nter@20766 24 make &&
Hans-G?nter@20766 25 make install
paul@4624 26 }
paul@4624 27
paul@4624 28 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@4624 29 genpkg_rules()
paul@4624 30 {
paul@4624 31 mkdir -p $fs/usr
Hans-G?nter@22579 32 cp -a $install/usr/bin $fs/usr
paul@4624 33 }