wok view socat/receipt @ rev 13700

tazbug-website: empty functions BREAK cook
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 15 14:43:36 2012 +0100 (2012-12-15)
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 }