wok view ekiga/receipt @ rev 2015

Up: flac (1.2.1)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Jan 08 21:44:32 2009 +0100 (2009-01-08)
parents 1783302c22a4
children ecb146e32c08
line source
1 # SliTaz package receipt.
3 PACKAGE="ekiga"
4 VERSION="3.0.0"
5 CATEGORY="network"
6 SHORT_DESC="SIP and H.323 compatible VoIP telephony and video conferencing."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.ekiga.org/"
10 WGET_URL="$WEB_SITE/admin/downloads/latest/sources/sources/$TARBALL"
11 BUILD_DEPENDS="opal-dev opal ptlib-dev ptlib gtk+-dev intltool libsigc++ libsigc++-dev openssl-dev libSDL-dev libunixODBC"
12 DEPENDS="opal ptlib cyrus-sasl openssl libSDL libiconv libunixODBC"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --sysconfdir=/etc \
19 --libexecdir=/usr/bin --mandir=/usr/share/man \
20 --disable-gnome --disable-gconf --disable-eds --disable-notify \
21 --disable-xv --disable-avahi --disable-scrollkeeper --disable-gdu \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share
32 cp -a $_pkg/etc $fs
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/share/sounds $fs/usr/share
35 cp -a $_pkg/usr/share/icons $fs/usr/share
36 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
37 cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
38 cp -a $_pkg/usr/share/applications $fs/usr/share
39 }