wok view socat/receipt @ rev 15581

xorg-cf-files: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 30 11:11:23 2013 +0000 (2013-11-30)
parents e9c875cc07f0
children 32ca8cba1aae
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.dest-unreach.org/$PACKAGE/"
11 WGET_URL="${WEB_SITE}download/$TARBALL"
13 BUILD_DEPENDS="openssl-dev ncurses-dev"
14 DEPENDS="openssl ncurses libwrap readline"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }