wok view wyrd/receipt @ rev 9874

slitaz-boot-script: fix path for bootlof script
author Christophe Lincoln <pankso@slitaz.org>
date Mon May 16 23:45:00 2011 +0200 (2011-05-16)
parents 2517bd1be6e7
children 2a21689b0af7
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 DEPENDS="ncurses remind ocaml"
9 BUILD_DEPENDS="ncurses-dev remind ocaml"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://pessimization.com/software/wyrd/"
12 WGET_URL="http://pessimization.com/software/wyrd/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --sysconfdir=/etc \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make -j1 && make -j1 DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr $fs/etc
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/etc/wyrdrc $fs/etc
33 }