wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="fetchmail"
4 VERSION="6.3.17"
5 CATEGORY="network"
6 SHORT_DESC="Mail retrieval and forwarding utility "
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="openssl"
9 BUILD_DEPENDS="openssl-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://fetchmail.berlios.de/"
12 WGET_URL="http://download.berlios.de/fetchmail/$TARBALL
13 http://download2.berlios.de/fetchmail/$TARBALL"
14 HANDBOOK_URL="http://fetchmail.berlios.de/fetchmail-man.html"
15 TAGS="email"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $_pkg/usr/bin $fs/usr
34 }