blob: 7b75358606e8610b6c94005f9280b4c05d699920 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Librairie pour ekiga
# URL: http://www.gnome.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libtheora, x264, ffmpeg, ptlib
name=opal
version=3.6.8
release=1
source=(ftp://ftp.gnome.org/pub/gnome/sources/opal/3.6/$name-$version.tar.bz2)
ftp://ftp.gnome.org/pub/gnome/sources/opal/3.6/opal-3.6.6.tar.bz2
build() {
cd $name-$version
./configure --prefix=/usr\
--sysconfdir=/etc \
--localstatedir=/var/lib \
--mandir=/usr/share/man \
--disable-esd
make
make DESTDIR=$PKG install
}
|