wok-next annotate wyrd/receipt @ rev 8449
emacs-pkg-vala-mode: fix start file
author | Dominique Corbex <domcox@slitaz.org> |
---|---|
date | Sun Feb 06 21:53:17 2011 +0100 (2011-02-06) |
parents | |
children | 93cdefa9f1a7 |
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 && |
paul@7828 | 24 make && make 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 |