wok annotate 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
rev   line source
mimas@2027 1 # SliTaz package receipt.
mimas@2027 2
mimas@2027 3 PACKAGE="lftp"
pankso@12551 4 VERSION="4.3.6"
mimas@2027 5 CATEGORY="network"
mimas@2027 6 SHORT_DESC="Small but powerful ftp client"
mimas@2027 7 MAINTAINER="mimas@slitaz.org"
erjo@4298 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
mimas@2027 9 WEB_SITE="http://lftp.yar.ru/"
mimas@2027 10 WGET_URL="http://ftp.yars.free.net/pub/source/lftp/$TARBALL"
slaxemulator@12381 11 CROSS="bug: failed at test"
mimas@2027 12
slaxemulator@12381 13 DEPENDS="readline expat gnutls gcc-lib-base"
pascal@12660 14 BUILD_DEPENDS="readline-dev gperf gnutls-dev ncurses-dev"
erjo@9918 15
mimas@2027 16 # Rules to configure and make the package.
mimas@2027 17 compile_rules()
mimas@2027 18 {
mimas@2027 19 cd $src
mimas@2027 20 ./configure \
slaxemulator@12381 21 --with-gnutls \
slaxemulator@10183 22 --without-openssl \
slaxemulator@12381 23 --build=$HOST_SYSTEM \
slaxemulator@12381 24 --host=$HOST_SYSTEM &&
pascal@5003 25 make &&
slaxemulator@9068 26 make install
mimas@2027 27 }
mimas@2027 28
mimas@2027 29 # Rules to gen a SliTaz package suitable for Tazpkg.
mimas@2027 30 genpkg_rules()
mimas@2027 31 {
mimas@2027 32 mkdir -p $fs/usr
slaxemulator@12381 33 cp -a $install/usr/bin $fs/usr
mimas@2027 34 }
mimas@2027 35