Guest User

Untitled

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