wok view socat/receipt @ rev 7847

Add: weechat v0.3.3(from wok-undigest/weechat)
author Liu Peng <rocky@slitaz.org>
date Tue Dec 28 16:11:28 2010 +0000 (2010-12-28)
parents 0d71947173a7
children 380ffe05937a
line source
1 # SliTaz package receipt.
3 PACKAGE="socat"
4 VERSION="2.0.0-b3"
5 CATEGORY="network"
6 SHORT_DESC="Reads and writes data across network connections."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.dest-unreach.org/$PACKAGE/"
10 WGET_URL="${WEB_SITE}download/$TARBALL"
11 BUILD_DEPENDS="openssl-dev ncurses-dev"
12 DEPENDS="openssl ncurses libwrap readline"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/bin $fs/usr
28 }