wok-current annotate lftp/receipt @ rev 5692
busybox: add modprobe -l support
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Jun 05 15:38:11 2010 +0200 (2010-06-05) |
parents | 3dd05b22268d |
children | cab6e4349e1a |
rev | line source |
---|---|
mimas@2027 | 1 # SliTaz package receipt. |
mimas@2027 | 2 |
mimas@2027 | 3 PACKAGE="lftp" |
erjo@4298 | 4 VERSION="4.0.2" |
mimas@2027 | 5 CATEGORY="network" |
mimas@2027 | 6 SHORT_DESC="Small but powerful ftp client" |
mimas@2027 | 7 MAINTAINER="mimas@slitaz.org" |
pascal@5003 | 8 DEPENDS="readline expat gcc-lib-base" |
pankso@3160 | 9 BUILD_DEPENDS="readline-dev expat-dev" |
erjo@4298 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
mimas@2027 | 11 WEB_SITE="http://lftp.yar.ru/" |
mimas@2027 | 12 WGET_URL="http://ftp.yars.free.net/pub/source/lftp/$TARBALL" |
mimas@2027 | 13 |
mimas@2027 | 14 # Rules to configure and make the package. |
mimas@2027 | 15 compile_rules() |
mimas@2027 | 16 { |
mimas@2027 | 17 cd $src |
mimas@2027 | 18 ./configure \ |
mimas@2027 | 19 --prefix=/usr \ |
mimas@2027 | 20 --infodir=/usr/share/info \ |
mimas@2027 | 21 --without-gnutls \ |
mimas@2027 | 22 --without-openssl \ |
mimas@2027 | 23 --mandir=/usr/share/man \ |
pascal@5003 | 24 $CONFIGURE_ARGS && |
pascal@5003 | 25 make && |
mimas@2027 | 26 make DESTDIR=$PWD/_pkg 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 |
mimas@2027 | 33 cp -a $_pkg/usr/bin $fs/usr |
mimas@2027 | 34 strip -s $fs/usr/bin/* |
mimas@2027 | 35 } |
mimas@2027 | 36 |