diff options
Diffstat (limited to 'extra/telepathy-qt/Pkgfile')
-rwxr-xr-x | extra/telepathy-qt/Pkgfile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/extra/telepathy-qt/Pkgfile b/extra/telepathy-qt/Pkgfile new file mode 100755 index 000000000..eaeccc492 --- /dev/null +++ b/extra/telepathy-qt/Pkgfile @@ -0,0 +1,22 @@ +# Description: Permet la communication en temps réel +# URL: http://telepathy.freedesktop.org/wiki/ +# Maintainer: NuTyX packager team +# Packager: lesibel at free dot fr +# Depends on: cmake, qt, dbus-python, telepathy-farsight, gstreamer +# Run on: qt,dbus-python,telepathy-farsight,gstreamer + +name=telepathy-qt +version=0.7.3 +release=1 +source=(http://telepathy.freedesktop.org/releases/${name}4/${name}4-$version.tar.gz) + +build() { + cd ${name}4-$version + mkdir build + cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. \ + -DCMAKE_BUILD_TYPE=Release \ + -DHAVE_QDBUSVARIANT_OPERATOR_EQUAL=1 + make + make DESTDIR=$PKG install +} |