talimat 659 B

123456789101112131415161718192021222324
  1. # Description: Qt5 tabanlı Telepathy istemcileri için bir kütüphane
  2. # URL: http://telepathy.freedesktop.org/wiki/
  3. # Packager: alihan-ozturk28@hotmail.com
  4. # Depends on: telepathy-farstream libxslt cmake doxygen qt5
  5. name=telepathy-qt5
  6. version=0.9.7
  7. release=1
  8. source=(http://telepathy.freedesktop.org/releases/telepathy-qt/telepathy-qt-$version.tar.gz)
  9. build() {
  10. cd telepathy-qt-$version
  11. cmake -DCMAKE_BUILD_TYPE=Release \
  12. -DCMAKE_INSTALL_PREFIX=/usr \
  13. -DPYTHON_EXECUTABLE=/usr/bin/python \
  14. -DDESIRED_QT_VERSION=5 \
  15. -DENABLE_EXAMPLES=OFF \
  16. -DENABLE_TESTS=OFF
  17. make
  18. make DESTDIR=$PKG install
  19. }