wok-next view wyrd/receipt @ rev 19988

Add qt5 - now it's look good enough
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Oct 20 03:29:40 2017 +0300 (2017-10-20)
parents 3ba8d2c9720d
children 757d032c55c7
line source
1 # SliTaz package receipt.
3 PACKAGE="wyrd"
4 VERSION="1.4.5"
5 CATEGORY="utilities"
6 SHORT_DESC="Wyrd is a text-based front-end to Remind."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://pessimization.com/software/wyrd/"
11 WGET_URL="http://pessimization.com/software/wyrd/$TARBALL"
13 DEPENDS="ncurses remind ocaml"
14 BUILD_DEPENDS="ncurses-dev remind ocaml"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --prefix=/usr \
21 --sysconfdir=/etc \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make -j1 && make -j1 DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr $fs/etc
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/etc/wyrdrc $fs/etc
34 }