wok annotate wyrd/receipt @ rev 11047
Up: clamtk to 4.36.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun Oct 16 22:44:10 2011 +0000 (2011-10-16) |
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 |