wok view wyrd/receipt @ rev 21314

5) lxpanel: up (0.10.0)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Apr 18 17:46:06 2019 +0300 (2019-04-18)
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 }