wok annotate socat/receipt @ rev 22130

updated wifidog (1.1.5 -> 1.3.0)
author Hans-G?nter Theisgen
date Mon Nov 04 11:16:52 2019 +0100 (2019-11-04)
parents 70366136ac6a
children f76ed41ec985
rev   line source
pascal@2059 1 # SliTaz package receipt.
pascal@2059 2
pascal@2059 3 PACKAGE="socat"
Hans-G?nter@21927 4 VERSION="2.0.0-b8"
pascal@2059 5 CATEGORY="network"
pascal@2059 6 SHORT_DESC="Reads and writes data across network connections."
pascal@2059 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
Hans-G?nter@21927 9 WEB_SITE="http://www.dest-unreach.org/$PACKAGE/"
Hans-G?nter@21927 10
pascal@2059 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@2059 12 WGET_URL="${WEB_SITE}download/$TARBALL"
Hans-G?nter@21927 13
Hans-G?nter@21927 14 BUILD_DEPENDS="ncurses-dev openssl-dev"
Hans-G?nter@21927 15 DEPENDS="libwrap ncurses openssl readline"
Hans-G?nter@21927 16
yuripourre@17680 17 HOST_ARCH="i486"
pascal@15000 18
pascal@2059 19 # Rules to configure and make the package.
pascal@2059 20 compile_rules()
pascal@2059 21 {
pascal@2059 22 ./configure --prefix=/usr $CONFIGURE_ARGS &&
pascal@2059 23 make &&
pascal@15000 24 make DESTDIR=$DESTDIR install
pascal@2059 25 }
pascal@2059 26
pascal@2059 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2059 28 genpkg_rules()
pascal@2059 29 {
pascal@2059 30 mkdir -p $fs/usr
pascal@15000 31 cp -a $install/usr/bin $fs/usr
pascal@2059 32 }