wok annotate socat/receipt @ rev 23675

updated strigi, strigi-client and strigi-dev (0.7.5 -> 0.7.8)
author Hans-G?nter Theisgen
date Sun Apr 26 10:35:40 2020 +0100 (2020-04-26)
parents 12d5088fe249
children 83b97236db32
rev   line source
pascal@2059 1 # SliTaz package receipt.
pascal@2059 2
pascal@2059 3 PACKAGE="socat"
Hans-G?nter@23657 4 VERSION="2.0.0-b9"
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 {
Hans-G?nter@23657 22 ./configure \
Hans-G?nter@23657 23 --prefix=/usr \
Hans-G?nter@23657 24 $CONFIGURE_ARGS &&
pascal@2059 25 make &&
pascal@15000 26 make DESTDIR=$DESTDIR install
pascal@2059 27 }
pascal@2059 28
pascal@2059 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2059 30 genpkg_rules()
pascal@2059 31 {
pascal@2059 32 mkdir -p $fs/usr
Hans-G?nter@23657 33 cp -a $install/usr/bin $fs/usr
pascal@2059 34 }