wok view socat/receipt @ rev 20423

Update some web_site to https
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 09 12:16:16 2018 +0200 (2018-08-09)
parents eacced79e6ab
children 12d5088fe249
line source
1 # SliTaz package receipt.
3 PACKAGE="socat"
4 VERSION="2.0.0-b7"
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"
12 HOST_ARCH="i486"
14 BUILD_DEPENDS="openssl-dev ncurses-dev"
15 DEPENDS="openssl ncurses libwrap readline"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr $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 $install/usr/bin $fs/usr
31 }