blob: 0a577fc133e4875266d18914dd454c1a5d976f1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: SoftPhone, Video Conferencing and Instant Messenger application over the Internet
# URL: http://www.ekiga.org/
# Maintainer: Erich Eckner, erich at eckner dot net
# Depends on: boost gnome-icon-theme gconf
name=ekiga
version=4.0.1
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--mandir=/usr/man \
--disable-nls
make
make DESTDIR=$PKG install
}
|