talimat 604 B

123456789101112131415161718192021222324
  1. # Tanım: Acik kaynak kodlu video donusturucu
  2. # URL: http://handbrake.fr/
  3. # Paketçi: milisarge
  4. # Gerekler: cmake qt5 libnotify lame x264 gtk3 faad2 freetype fribidi xorg-fontconfig libass libbluray libogg libpng libsamplerate libtheora libvorbis libvpx libxml2 perl-xml-parser pcre xorg-pixman python yasm x265
  5. # Grup: medya
  6. isim=handbrake
  7. surum=0.10.3
  8. devir=1
  9. kaynak=(http://download.handbrake.fr/releases/$surum/HandBrake-$surum.tar.bz2)
  10. derle() {
  11. cd HandBrake-$surum
  12. ./configure \
  13. --prefix=/usr \
  14. --force \
  15. --disable-gtk-update-checks
  16. cd build
  17. make -j1
  18. make DESTDIR=$PKG install
  19. }