wok annotate socat/receipt @ rev 18545

Add: get-vivaldi, kazehakase. Up: firefox-official(42.0). Misc: change various icons.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Nov 07 03:08:19 2015 +0200 (2015-11-07)
parents eacced79e6ab
children 12d5088fe249
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@17680 12 HOST_ARCH="i486"
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