wok view lftp/receipt @ rev 13057

mariadb: Fix WGET_URL (again)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Jun 20 16:39:21 2012 +0200 (2012-06-20)
parents 23774e0ffa0a
children 7e002bedebe8
line source
1 # SliTaz package receipt.
3 PACKAGE="lftp"
4 VERSION="4.3.6"
5 CATEGORY="network"
6 SHORT_DESC="Small but powerful ftp client"
7 MAINTAINER="mimas@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://lftp.yar.ru/"
10 WGET_URL="http://ftp.yars.free.net/pub/source/lftp/$TARBALL"
11 CROSS="bug: failed at test"
13 DEPENDS="readline expat gnutls gcc-lib-base"
14 BUILD_DEPENDS="readline-dev gperf gnutls-dev ncurses-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --with-gnutls \
22 --without-openssl \
23 --build=$HOST_SYSTEM \
24 --host=$HOST_SYSTEM &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }