talimat 827 B

1234567891011121314151617181920212223242526
  1. # Tanım: Bir müzik çalar ve kütüphane organizatörü. (qt5 ile derlendi)
  2. # URL: http://www.clementine-player.org/
  3. # Paketçi: milisarge cihan_alkan
  4. # Gerekler: cmake boost qt5 xorg-mesa libcdio protobuf taglib chromaprint crypto++ glew gstreamer gstreamer-plugins-base gstreamer-plugins-good gstreamer-plugins-ugly gstreamer-plugins-ffmpeg gstreamer-plugins-bad sqlite
  5. # Grup: medya
  6. isim=clementine
  7. surum=1.3.1
  8. devir=1
  9. kaynak=(spotify_blob.patch
  10. spotify_install.patch)
  11. derle() {
  12. git_indir https://github.com/clementine-player/Clementine.git#branch=qt5 Clementine-$surum
  13. cd Clementine-$surum
  14. patch -Np1 -i ../spotify_blob.patch
  15. patch -Np0 -i ../spotify_install.patch
  16. cd $SRC
  17. mkdir -p build
  18. cd build
  19. cmake "../Clementine-$surum" \
  20. -DCMAKE_INSTALL_PREFIX=/usr
  21. make
  22. make DESTDIR=${PKG} install
  23. }