diff options
Diffstat (limited to 'opal/Pkgfile')
-rw-r--r-- | opal/Pkgfile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/opal/Pkgfile b/opal/Pkgfile new file mode 100644 index 0000000..3e7761c --- /dev/null +++ b/opal/Pkgfile @@ -0,0 +1,29 @@ +# 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 +# Run on: libtheora,x264,ffmpeg,ptlib + +name=opal +version=3.10.1 +release=1 +source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz) + +build() { + cd $name-$version + CFLAGS="$CFLAGS -D__STDC_CONSTANT_MACROS" \ + ./configure --prefix=/usr\ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + --mandir=/usr/share/man \ + --disable-silk \ + --disable-libavcodec + + # there's a linking error in this release, SILK should be reactivated in the next release + # opal 3.10.1 isn't compatible with ffmpeg 0.8, libavcodec maybe reactivated in the next release + + make + make DESTDIR=$PKG install +} + |