wok-stable view wput/receipt @ rev 12460

fix symlinks
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 28 09:09:24 2017 +0200 (2017-04-28)
parents b7319995b37e
children
line source
1 # SliTaz package receipt.
3 PACKAGE="wput"
4 VERSION="0.6.2"
5 CATEGORY="network"
6 SHORT_DESC="A tiny wget-like ftp-client for uploading files"
7 MAINTAINER="l.lemarinel@gmail.com"
8 WEB_SITE="http://wput.sourceforge.net/"
9 TARBALL="${PACKAGE}-${VERSION}.tgz"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
11 BUILD_DEPENDS=""
12 DEPENDS=""
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 sed -i "s|^prefix *=.*|prefix = $DESTDIR/usr|" Makefile.in
19 ./configure --prefix=/usr \
20 --disable-g-switch \
21 --without-ssl $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 rm -f $fs/usr/bin/wdel
32 ln -s wput $fs/usr/bin/wdel
33 }