talimat 783 B

12345678910111213141516171819202122232425
  1. # Description : Bu pakette, GStreamer medya çerçevesini kullanan bir Phonon arka planı bulunur.
  2. # URL: https://www.kde.org/
  3. # Packager: alihan-ozturk28@hotmail.com
  4. # Depends on: phonon-qt5 gstreamer1 gstreamer1-plugins-base gstreamer1-plugins-good gstreamer1-plugins-bad gstreamer1-plugins-ugly libxml2 pulseaudio
  5. name=phonon-backend-gstreamer-qt5
  6. release=1
  7. version=4.9.0
  8. _name=phonon-backend-gstreamer
  9. source=( http://download.kde.org/stable/phonon/${_name}/$version/${_name}-$version.tar.xz)
  10. build() {
  11. cd phonon-gstreamer-$version
  12. cmake -DCMAKE_BUILD_TYPE=Release \
  13. -DCMAKE_SKIP_RPATH=ON \
  14. -DCMAKE_INSTALL_PREFIX=/usr \
  15. -DPHONON_BUILD_PHONON4QT5=ON \
  16. -DCMAKE_INSTALL_LIBDIR=lib \
  17. -Wno-dev
  18. make
  19. make DESTDIR=$PKG install
  20. }