blob: adb16aa2e6667604a41f0bb55316c351b4df6f2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: An open source VoIP and video conferencing application for GNOME
# URL: http://www.ekiga.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: esound, sdl, gnome-doc-utils, ptlib, opal, gtk, libgnomeui, libsigc++, dbus-glib, avahi, evolution-data-server, libnotify
name=ekiga
version=3.2.6
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/$name/3.2/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=$GNOME_PREFIX \
--sysconfdir=/etc \
--disable-ldap \
--localstatedir=/var/lib
make
make DESTDIR=$PKG install
}
|