wok diff ptlib/receipt @ rev 22434

Add sshrc (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 21 12:20:01 2019 +0100 (2019-12-21)
parents a78610b2eb47
children 78bc4b109dd6
line diff
     1.1 --- a/ptlib/receipt	Mon Jan 21 12:26:11 2019 +0100
     1.2 +++ b/ptlib/receipt	Sat Dec 21 12:20:01 2019 +0100
     1.3 @@ -1,26 +1,30 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="ptlib"
     1.7 -VERSION="2.6.5"
     1.8 +VERSION="2.10.11"
     1.9  CATEGORY="network"
    1.10  SHORT_DESC="Portable Tools Library for unix and windows."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="MPL"
    1.13 -TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.14  WEB_SITE="https://www.ekiga.org/"
    1.15 +
    1.16 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.17  WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.18  
    1.19 -DEPENDS="alsa-lib cyrus-sasl expat libsdl libdv libraw1394 \
    1.20 -libunixODBC openssl"
    1.21 -BUILD_DEPENDS="pkg-config flex openssl-dev cyrus-sasl-dev zlib-dev alsa-lib-dev"
    1.22 +DEPENDS="alsa-lib cyrus-sasl expat libdv libraw1394 libsdl \
    1.23 +	libunixODBC openssl"
    1.24 +BUILD_DEPENDS="alsa-lib-dev cyrus-sasl-dev flex openssl-dev \
    1.25 +	pkg-config zlib-dev"
    1.26  
    1.27  # Rules to configure and make the package.
    1.28  compile_rules()
    1.29  {
    1.30 -	cd $src
    1.31 -	./configure --prefix=/usr --bindir=/bin \
    1.32 -	--libexecdir=/usr/bin --mandir=/usr/share/man \
    1.33 -	$CONFIGURE_ARGS &&
    1.34 +	./configure			\
    1.35 +		--prefix=/usr		\
    1.36 +		--bindir=/bin		\
    1.37 +		--libexecdir=/usr/bin	\
    1.38 +		--mandir=/usr/share/man	\
    1.39 +		$CONFIGURE_ARGS &&
    1.40  	make &&
    1.41  	make DESTDIR=$DESTDIR install
    1.42  }
    1.43 @@ -29,7 +33,8 @@
    1.44  genpkg_rules()
    1.45  {
    1.46  	mkdir -p $fs/usr
    1.47 -	cp -a $install/usr/lib $fs/usr
    1.48 -	cp -a $install/usr/bin $fs/usr
    1.49 -	cp -a $install/usr/share $fs/usr
    1.50 +
    1.51 +	cp -a $install/usr/lib		$fs/usr
    1.52 +	cp -a $install/usr/bin		$fs/usr
    1.53 +	cp -a $install/usr/share	$fs/usr
    1.54  }