wok annotate wget/receipt @ rev 3410

Fix mplayerplug-in compile with gcc44 and glibc210
author Rohit Joshi <jozee@slitaz.org>
date Fri Jun 12 17:28:25 2009 +0000 (2009-06-12)
parents 4f809380ad57
children 57a049c42f13
rev   line source
sygne@1558 1 # SliTaz package receipt.
sygne@1558 2
sygne@1558 3 PACKAGE="wget"
sygne@1558 4 VERSION="1.9"
sygne@1558 5 CATEGORY="utilities"
sygne@1558 6 SHORT_DESC="retrieve files from the web"
sygne@1558 7 MAINTAINER="sygne@ombres.eu"
paul@1712 8 DEPENDS="openssl"
sygne@1558 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
sygne@1558 10 WEB_SITE="http://www.gnu.org/software/wget/wget.html"
sygne@1558 11 WGET_URL="http://ftp.gnu.org/gnu/wget/$TARBALL"
sygne@1558 12
sygne@1558 13 # Rules to configure and make the package.
sygne@1558 14 compile_rules()
sygne@1558 15 {
sygne@1558 16 cd $src
sygne@1558 17 ./configure
sygne@1558 18 make DESTDIR=$PWD/_pkg install
sygne@1558 19 }
sygne@1558 20
sygne@1558 21 # Rules to gen a SliTaz package suitable for Tazpkg.
sygne@1558 22 genpkg_rules()
sygne@1558 23 {
sygne@1558 24 echo $_pkg
sygne@1558 25 mkdir -p $fs/usr
sygne@1558 26 cp -a $_pkg/usr/local/bin $fs/usr
sygne@1558 27 strip -s $fs/usr/bin/*
sygne@1558 28 }
sygne@1558 29
sygne@1558 30 # Post install rules.
sygne@1558 31 post_install()
sygne@1558 32 {
sygne@1558 33 echo -e "
sygne@1558 34 wget is in conflict with the busybox wget.
sygne@1558 35 You'll have to re-install it after each busybox update.
sygne@1558 36 If you want to use the busybox wget, do (as root):
sygne@1558 37 \033[1m ln -s /bin/busybox /usr/bin/wget \033[0m
sygne@1558 38 "
sygne@1558 39 }
sygne@1558 40
sygne@1558 41