wok annotate wyrd/receipt @ rev 10519

nss-ldapd: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 25 16:12:30 2011 +0200 (2011-05-25)
parents 2517bd1be6e7
children 2a21689b0af7
rev   line source
paul@7828 1 # SliTaz package receipt.
paul@7828 2
paul@7828 3 PACKAGE="wyrd"
paul@7828 4 VERSION="1.4.5"
paul@7828 5 CATEGORY="utilities"
paul@7828 6 SHORT_DESC="Wyrd is a text-based front-end to Remind."
paul@7828 7 MAINTAINER="paul@slitaz.org"
paul@7828 8 DEPENDS="ncurses remind ocaml"
paul@7828 9 BUILD_DEPENDS="ncurses-dev remind ocaml"
paul@7828 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@7828 11 WEB_SITE="http://pessimization.com/software/wyrd/"
paul@7828 12 WGET_URL="http://pessimization.com/software/wyrd/$TARBALL"
paul@7828 13
paul@7828 14 # Rules to configure and make the package.
paul@7828 15 compile_rules()
paul@7828 16 {
paul@7828 17 cd $src
paul@7828 18 ./configure \
paul@7828 19 --prefix=/usr \
paul@7828 20 --sysconfdir=/etc \
paul@7828 21 --infodir=/usr/share/info \
paul@7828 22 --mandir=/usr/share/man \
paul@7828 23 $CONFIGURE_ARGS &&
slaxemulator@9542 24 make -j1 && make -j1 DESTDIR=$PWD/_pkg install
paul@7828 25 }
paul@7828 26
paul@7828 27 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@7828 28 genpkg_rules()
paul@7828 29 {
paul@7828 30 mkdir -p $fs/usr $fs/etc
paul@7828 31 cp -a $_pkg/usr/bin $fs/usr
paul@7828 32 cp -a $_pkg/etc/wyrdrc $fs/etc
paul@7828 33 }
paul@7828 34