wok annotate fetchmail/receipt @ rev 10274

ncurses*: build fail if native build system is used so use the compiler machine type
author Christophe Lincoln <pankso@slitaz.org>
date Sat May 21 21:22:47 2011 +0200 (2011-05-21)
parents fb8aceda65ff
children 09463585caed
rev   line source
erjo@3669 1 # SliTaz package receipt.
erjo@3669 2
erjo@3669 3 PACKAGE="fetchmail"
erjo@5698 4 VERSION="6.3.17"
erjo@3669 5 CATEGORY="network"
erjo@3669 6 SHORT_DESC="Mail retrieval and forwarding utility "
erjo@3669 7 MAINTAINER="erjo@slitaz.org"
erjo@3669 8 DEPENDS="openssl"
erjo@3669 9 BUILD_DEPENDS="openssl-dev"
erjo@3669 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@3669 11 WEB_SITE="http://fetchmail.berlios.de/"
erjo@3669 12 WGET_URL="http://download.berlios.de/fetchmail/$TARBALL
erjo@3669 13 http://download2.berlios.de/fetchmail/$TARBALL"
erjo@3669 14 HANDBOOK_URL="http://fetchmail.berlios.de/fetchmail-man.html"
jozee@4936 15 TAGS="email"
erjo@3669 16
erjo@3669 17 # Rules to configure and make the package.
erjo@3669 18 compile_rules()
erjo@3669 19 {
erjo@3669 20 cd $src
erjo@3669 21 ./configure \
erjo@3669 22 --prefix=/usr \
erjo@3669 23 --infodir=/usr/share/info \
erjo@3669 24 --mandir=/usr/share/man \
erjo@3669 25 $CONFIGURE_ARGS &&
erjo@3669 26 make && make DESTDIR=$PWD/_pkg install
erjo@3669 27 }
erjo@3669 28
erjo@3669 29 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@3669 30 genpkg_rules()
erjo@3669 31 {
erjo@3669 32 mkdir -p $fs/usr
erjo@3669 33 cp -a $_pkg/usr/bin $fs/usr
erjo@3669 34 }
erjo@3669 35