Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2013
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. # Maintainer: James Thomas <dairy_water at yahoo dot co dot uk>
  2. # Contributor: Anton Larionov <diffident dot cat at gmail dot com>
  3.  
  4.  
  5. _pkgname=cantata
  6. pkgname="${_pkgname}-qt"
  7. pkgver=1.0.3
  8. pkgrel=1
  9. pkgdesc="QT4 client for the music player daemon (MPD) (without kdelibs)"
  10. arch=('i686' 'x86_64')
  11. url="https://code.google.com/p/cantata/"
  12. license=('GPL')
  13. depends=('qtwebkit' 'taglib' 'ffmpeg' 'mpg123' 'phonon')
  14. optdepends=('libmtp: to support MTP devices'
  15. 'oxygen-icons: to fill in otherwise missing icons')
  16. makedepends=('cmake' 'automoc4')
  17. provides=('cantata')
  18. conflicts=('cantata')
  19. install=${pkgname}.install
  20. source=("http://cantata.googlecode.com/files/${_pkgname}-${pkgver}.tar.bz2")
  21.  
  22.  
  23.  
  24. build() {
  25. cd "${srcdir}/${_pkgname}-${pkgver}"
  26. mkdir build
  27. cd build
  28. cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DENABLE_KDE=NO -DQT_QMAKE_EXECUTABLE=qmake-qt4
  29. make
  30. }
  31.  
  32. package() {
  33. cd "${srcdir}/${_pkgname}-${pkgver}/build"
  34. make DESTDIR=${pkgdir} install
  35. }
  36.  
  37.  
  38.  
  39.  
  40. md5sums=('fd942d25127a7936efaf1fe887d66189')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement