wok-undigest view wput/receipt @ rev 296

blackbox: Fixed. Add patch from archlinux to get it to build.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Jun 07 09:16:08 2011 +0000 (2011-06-07)
parents
children da1dd940735a
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 TARBALL="${PACKAGE}-${VERSION}.tgz"
9 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
10 BUILD_DEPENDS=""
11 DEPENDS=""
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=$PWD/_pkg/usr \
18 --disable-g-switch \
19 --without-ssl
20 make
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }