wok annotate socat/receipt @ rev 17679

Up socat: add host-arch
author Yuri Pourre <yuripourre@gmail.com>
date Thu Feb 19 12:24:45 2015 -0200 (2015-02-19)
parents 32ca8cba1aae
children 70366136ac6a
rev   line source
pascal@2059 1 # SliTaz package receipt.
pascal@2059 2
pascal@2059 3 PACKAGE="socat"
pascal@16255 4 VERSION="2.0.0-b7"
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"
pascal@2059 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@2059 10 WEB_SITE="http://www.dest-unreach.org/$PACKAGE/"
pascal@2059 11 WGET_URL="${WEB_SITE}download/$TARBALL"
yuripourre@17679 12 HOST_ARCH="i486 arm"
pascal@15000 13
pascal@2059 14 BUILD_DEPENDS="openssl-dev ncurses-dev"
pascal@2441 15 DEPENDS="openssl ncurses libwrap readline"
pascal@2059 16
pascal@2059 17 # Rules to configure and make the package.
pascal@2059 18 compile_rules()
pascal@2059 19 {
pascal@2059 20 cd $src
pascal@2059 21 ./configure --prefix=/usr $CONFIGURE_ARGS &&
pascal@2059 22 make &&
pascal@15000 23 make DESTDIR=$DESTDIR install
pascal@2059 24 }
pascal@2059 25
pascal@2059 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2059 27 genpkg_rules()
pascal@2059 28 {
pascal@2059 29 mkdir -p $fs/usr
pascal@15000 30 cp -a $install/usr/bin $fs/usr
pascal@2059 31 }
pascal@2059 32