wok view ptlib/receipt @ rev 24031

updated dialog (1.3_20190211 -> 1.3_20210324)
author Hans-G?nter Theisgen
date Tue Apr 06 13:52:57 2021 +0100 (2021-04-06)
parents bdb6e157e578
children a3c45ab9082e
line source
1 # SliTaz package receipt.
3 PACKAGE="ptlib"
4 VERSION="2.10.11"
5 CATEGORY="network"
6 SHORT_DESC="Portable Tools Library for unix and windows."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MPL"
9 WEB_SITE="https://www.ekiga.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
14 DEPENDS="alsa-lib cyrus-sasl expat libdv libraw1394 libsdl \
15 libunixODBC openssl"
16 BUILD_DEPENDS="alsa-lib-dev cyrus-sasl-dev flex openssl-dev \
17 pkg-config zlib-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 patch -p1 < $stuff/ptlib-2.10.10-mga-bison-parameter.patch
23 sed -i 's|.(Q_LD).*|echo &\n\t&|' make/lib.mak
24 ./configure \
25 --prefix=/usr \
26 --bindir=/bin \
27 --libexecdir=/usr/bin \
28 --mandir=/usr/share/man \
29 $CONFIGURE_ARGS &&
30 make &&
31 make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr
39 cp -a $install/usr/lib $fs/usr
40 cp -a $install/usr/bin $fs/usr
41 cp -a $install/usr/share $fs/usr
42 }