wok view wyrd/receipt @ rev 16434

Merge branches
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 18 13:51:05 2014 +0300 (2014-04-18)
parents 93cdefa9f1a7
children 3ba8d2c9720d
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 cd $src
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 }