garynych

paromtv

Mar 10th, 2016 (edited)
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. # Contributor: ReNoM <renom@list.ru>
  2. # fix garynych <garynych@yandex.ru>
  3.  
  4. pkgname=paromtv
  5. pkgver=20160202
  6. pkgrel=1
  7. pkgdesc="Client for free online TV - Parom.TV."
  8.  
  9. arch=("i686" "x86_64")
  10.  
  11. url="http://www.parom.tv/"
  12. license=("custom")
  13.  
  14. depends=('vlc' 'qt4')
  15.  
  16. arch=`uname -m`
  17.  
  18. case "$arch" in
  19. "i686")
  20. source=("http://ru.parom.tv/download/linux/paromplayer-i386.deb")
  21. sha256sums=("SKIP")
  22. ;;
  23. "x86_64")
  24. source=("http://ru.parom.tv/download/linux/paromplayer-x86-64.deb")
  25. sha256sums=("SKIP")
  26. ;;
  27. *)
  28. echo "Unsupported arch: $arch"
  29. exit 1
  30. ;;
  31. esac
  32.  
  33. build () {
  34. cd "$srcdir"
  35. tar xzvf data.tar.gz
  36. }
  37.  
  38. package () {
  39. mv "$srcdir"/usr/ "$pkgdir"
  40. }
Add Comment
Please, Sign In to add comment