wok annotate wget/receipt @ rev 15588
arj: ugly ack
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Dec 02 16:43:36 2013 +0000 (2013-12-02) |
parents | 2b9f96603415 |
children | 4bc239bf6b69 |
rev | line source |
---|---|
sygne@1558 | 1 # SliTaz package receipt. |
sygne@1558 | 2 |
sygne@1558 | 3 PACKAGE="wget" |
pankso@13205 | 4 VERSION="1.14" |
sygne@1558 | 5 CATEGORY="utilities" |
sygne@1558 | 6 SHORT_DESC="retrieve files from the web" |
sygne@1558 | 7 MAINTAINER="sygne@ombres.eu" |
pascal@15201 | 8 LICENSE="GPL3" |
slaxemulator@11143 | 9 TARBALL="$PACKAGE-$VERSION.tar.xz" |
sygne@1558 | 10 WEB_SITE="http://www.gnu.org/software/wget/wget.html" |
slaxemulator@11143 | 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" |
sygne@1558 | 12 |
pankso@9801 | 13 DEPENDS="openssl libidn" |
pankso@9801 | 14 BUILD_DEPENDS="openssl-dev libidn-dev" |
pankso@9801 | 15 |
sygne@1558 | 16 # Rules to configure and make the package. |
sygne@1558 | 17 compile_rules() |
sygne@1558 | 18 { |
sygne@1558 | 19 cd $src |
slaxemulator@11143 | 20 ./configure --with-ssl=openssl $CONFIGURE_ARGS && |
pankso@9801 | 21 make DESTDIR=$DESTDIR install |
sygne@1558 | 22 } |
sygne@1558 | 23 |
sygne@1558 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
sygne@1558 | 25 genpkg_rules() |
sygne@1558 | 26 { |
sygne@1558 | 27 mkdir -p $fs/usr |
pascal@14999 | 28 cp -a $install/usr/bin $fs/usr |
sygne@1558 | 29 } |
sygne@1558 | 30 |
sygne@1558 | 31 # Post install rules. |
sygne@1558 | 32 post_install() |
sygne@1558 | 33 { |
sygne@1558 | 34 echo -e " |
sygne@1558 | 35 wget is in conflict with the busybox wget. |
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 |
rcx@3923 | 41 # Pre and post install commands for Tazpkg. |
rcx@3923 | 42 # We must remove all Busybox symlink before installing. |
rcx@3923 | 43 # |
rcx@3923 | 44 pre_install() |
rcx@3923 | 45 { |
rcx@3923 | 46 local root |
rcx@3923 | 47 root=$1 |
rcx@3923 | 48 echo "Processing pre-install commands..." |
rcx@3923 | 49 echo -n "Removing all Busybox replaced utils... " |
rcx@3923 | 50 rm -f $root/usr/bin/wget |
rcx@3923 | 51 status |
rcx@3923 | 52 } |
sygne@1558 | 53 |
rcx@3923 | 54 post_remove() |
rcx@3923 | 55 { |
slaxemulator@10049 | 56 ln -s /bin/busybox $1/usr/bin/wget |
rcx@3923 | 57 } |