wok diff opal/receipt @ rev 25039
Up aspell-pl (6.0_20210731-0), icmptx (20190501)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu May 26 14:53:15 2022 +0000 (2022-05-26) |
parents | 6831608a1b2a |
children |
line diff
1.1 --- a/opal/receipt Tue Sep 28 17:26:43 2021 +0000 1.2 +++ b/opal/receipt Thu May 26 14:53:15 2022 +0000 1.3 @@ -1,19 +1,21 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="opal" 1.7 -VERSION="3.6.6" 1.8 +VERSION="3.10.10" 1.9 CATEGORY="network" 1.10 +TAGS="telephony" 1.11 SHORT_DESC="Open Phone Abstraction library." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="MPL" 1.14 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.15 -WEB_SITE="https://www.ekiga.org/" 1.16 -WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL" 1.17 -TAGS="telephony" 1.18 +WEB_SITE="http://www.opalvoip.org/" 1.19 +REPOLOGY="opal-voip" 1.20 1.21 -DEPENDS="cyrus-sasl expat jpeg libsdl libogg libtheora libunixODBC \ 1.22 -openssl ptlib tiff zlib" 1.23 -BUILD_DEPENDS="ptlib ptlib-dev openssl-dev" 1.24 +TARBALL="$PACKAGE-$VERSION.tar.xz" 1.25 +WGET_URL="https://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL" 1.26 + 1.27 +DEPENDS="cyrus-sasl expat jpeg libogg libsdl libtheora libunixODBC 1.28 + openssl ptlib tiff zlib" 1.29 +BUILD_DEPENDS="bash openssl-dev ptlib ptlib-dev" 1.30 1.31 current_version() 1.32 { 1.33 @@ -24,18 +26,24 @@ 1.34 # Rules to configure and make the package. 1.35 compile_rules() 1.36 { 1.37 - cd $src 1.38 - ./configure --prefix=/usr --bindir=/bin \ 1.39 - --libexecdir=/usr/bin --mandir=/usr/share/man \ 1.40 - $CONFIGURE_ARGS && 1.41 + export SHELL=/bin/bash 1.42 + export CONFIG_SHELL=/bin/bash 1.43 + 1.44 + ./configure \ 1.45 + --prefix=/usr \ 1.46 + --bindir=/bin \ 1.47 + --libexecdir=/usr/bin \ 1.48 + --mandir=/usr/share/man \ 1.49 + --enable-video \ 1.50 + $CONFIGURE_ARGS && 1.51 make $MAKEFLAGS && 1.52 - make DESTDIR=$DESTDIR install 1.53 + make install DESTDIR=$DESTDIR 1.54 } 1.55 1.56 # Rules to gen a SliTaz package suitable for Tazpkg. 1.57 genpkg_rules() 1.58 { 1.59 mkdir -p $fs/usr 1.60 - cp -a $install/usr/lib $fs/usr 1.61 - rm -f $fs/usr/lib/*.a 1.62 + cp -a $install/usr/lib $fs/usr 1.63 + rm -f $fs/usr/lib/*.a 1.64 }