Advertisement
Guest User

Untitled

a guest
Aug 11th, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1.  
  2. pkgname=deadbeef
  3. pkgver=1.8.2
  4. pkgrel=1
  5. pkgdesc='A GTK+ audio player for GNU/Linux.'
  6. arch=('x86_64')
  7. url='http://deadbeef.sourceforge.net'
  8. license=('GPL2')
  9. depends=('alsa-lib' 'hicolor-icon-theme' 'desktop-file-utils' 'jansson')
  10. makedepends=('libvorbis' 'libmad' 'flac' 'curl' 'imlib2' 'wavpack' 'libsndfile' 'libcdio' 'libcddb'
  11. 'libx11' 'faad2' 'zlib' 'intltool' 'pkgconfig' 'libpulse' 'libzip' 'libsamplerate'
  12. 'yasm' 'ffmpeg' 'gtk2' 'gtk3')
  13. optdepends=('gtk2: for the GTK2 interface'
  14. 'gtk3: for the GTK3 interface'
  15. 'libsamplerate: for Resampler plugin'
  16. 'libvorbis: for Ogg Vorbis playback'
  17. 'libmad: for MP1/MP2/MP3 playback'
  18. 'mpg123: for MP1/MP2/MP3 playback'
  19. 'flac: for FLAC playback'
  20. 'curl: for Last.fm scrobbler, SHOUTcast, Icecast, Podcast support'
  21. 'imlib2: for artwork plugin'
  22. 'wavpack: for WavPack playback'
  23. 'libsndfile: for Wave playback'
  24. 'libcdio: audio cd plugin'
  25. 'libcddb: audio cd plugin'
  26. 'faad2: for AAC/MP4 support'
  27. 'dbus: for OSD notifications support'
  28. 'pulseaudio: for PulseAudio output plugin'
  29. 'libx11: for global hotkeys plugin'
  30. 'zlib: for Audio Overload plugin'
  31. 'libzip: for vfs_zip plugin'
  32. 'ffmpeg: for ffmpeg plugin')
  33. source=("https://github.com/DeaDBeeF-Player/${pkgname}/archive/${pkgver}.tar.gz")
  34. md5sums=('e854a26b8d9e7eb8f8db8333d213655d')
  35.  
  36. prepare() {
  37. cd "${srcdir}/${pkgname}-${pkgver}"
  38.  
  39. ./autogen.sh
  40. ./configure --prefix=/usr
  41.  
  42. }
  43.  
  44. build () {
  45. cd "${srcdir}/${pkgname}-${pkgver}"
  46. make
  47. }
  48.  
  49. package() {
  50. cd "${srcdir}/${pkgname}-${pkgver}"
  51. make DESTDIR="$pkgdir" install
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement