wok view wyrd/receipt @ rev 20995

updated gputils (0.14.3 -> 1.5.0.1)
author Hans-G?nter Theisgen
date Thu Mar 07 17:47:51 2019 +0100 (2019-03-07)
parents 3ba8d2c9720d
children 3c81dd700a3f
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="https://launchpad.net/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 export LDFLAGS="$LDFLAGS -ltinfo"
20 ./configure \
21 --prefix=/usr \
22 --sysconfdir=/etc \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make -j1 && make -j1 DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr $fs/etc
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/etc/wyrdrc $fs/etc
35 }