wok view task/receipt @ rev 22802

freetype: add freetype-config
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 28 09:23:39 2020 +0100 (2020-01-28)
parents d7bcdb8f5834
children 2ce8d8e11fff
line source
1 # SliTaz package receipt.
3 PACKAGE="task"
4 VERSION="2.5.1"
5 CATEGORY="utilities"
6 TAGS="office todo"
7 SHORT_DESC="An open source, command line, TODO list manager."
8 MAINTAINER="paul@slitaz.org"
9 LICENSE="MIT"
10 WEB_SITE="https://taskwarrior.org/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="${WEB_SITE}download/$TARBALL"
15 DEPENDS="gcc83-lib-base libgnutls ncurses util-linux-uuid"
16 BUILD_DEPENDS="cmake gcc83 libgnutls gnutls-dev ncurses-dev util-linux-uuid-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 #./configure \
22 #--prefix=/usr \
23 #--infodir=/usr/share/info \
24 #--mandir=/usr/share/man \
25 #$CONFIGURE_ARGS &&
27 export CC=gcc-83
28 export CXX=g++-83
30 cmake . -DCMAKE_INSTALL_PREFIX=/usr &&
31 make &&
32 make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/share
40 cp -a $install/usr/bin $fs/usr
41 cp -a $install/usr/share/doc $fs/usr/share
42 }