summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--deadbeef/.SRCINFO58
-rw-r--r--deadbeef/PKGBUILD55
2 files changed, 113 insertions, 0 deletions
diff --git a/deadbeef/.SRCINFO b/deadbeef/.SRCINFO
new file mode 100644
index 0000000..557ee3b
--- /dev/null
+++ b/deadbeef/.SRCINFO
@@ -0,0 +1,58 @@
+pkgbase = deadbeef
+ pkgdesc = A GTK+ audio player for GNU/Linux.
+ pkgver = 1.8.8
+ pkgrel = 1
+ url = http://deadbeef.sourceforge.net
+ arch = x86_64
+ license = GPL2
+ makedepends = libvorbis
+ makedepends = libmad
+ makedepends = flac
+ makedepends = curl
+ makedepends = imlib2
+ makedepends = wavpack
+ makedepends = libsndfile
+ makedepends = libcdio
+ makedepends = libcddb
+ makedepends = libx11
+ makedepends = faad2
+ makedepends = zlib
+ makedepends = intltool
+ makedepends = pkgconfig
+ makedepends = libpulse
+ makedepends = libzip
+ makedepends = libsamplerate
+ makedepends = libdispatch
+ makedepends = yasm
+ makedepends = ffmpeg
+ makedepends = gtk2
+ makedepends = gtk3
+ depends = alsa-lib
+ depends = hicolor-icon-theme
+ depends = desktop-file-utils
+ depends = jansson
+ optdepends = gtk2: for the GTK2 interface
+ optdepends = gtk3: for the GTK3 interface
+ optdepends = libsamplerate: for Resampler plugin
+ optdepends = libvorbis: for Ogg Vorbis playback
+ optdepends = libmad: for MP1/MP2/MP3 playback
+ optdepends = mpg123: for MP1/MP2/MP3 playback
+ optdepends = flac: for FLAC playback
+ optdepends = curl: for Last.fm scrobbler, SHOUTcast, Icecast, Podcast support
+ optdepends = imlib2: for artwork plugin
+ optdepends = wavpack: for WavPack playback
+ optdepends = libsndfile: for Wave playback
+ optdepends = libcdio: audio cd plugin
+ optdepends = libcddb: audio cd plugin
+ optdepends = faad2: for AAC/MP4 support
+ optdepends = dbus: for OSD notifications support
+ optdepends = pulseaudio: for PulseAudio output plugin
+ optdepends = libx11: for global hotkeys plugin
+ optdepends = zlib: for Audio Overload plugin
+ optdepends = libzip: for vfs_zip plugin
+ optdepends = ffmpeg: for ffmpeg plugin
+ optdepends = libdispatch: for last.fm plugin
+ source = https://sourceforge.net/projects/deadbeef/files/travis/linux/1.8.8/deadbeef-1.8.8.tar.bz2
+ sha512sums = 399f0e70eca5e102a9e73ff03199c89c6f28f3e0da96e793316d1af83f00e71f09f6cc81a3fd0b0f0d52fe9e0195a3b9ffb0cf7e7708c3ea7085f33a5ec08b47
+
+pkgname = deadbeef
diff --git a/deadbeef/PKGBUILD b/deadbeef/PKGBUILD
new file mode 100644
index 0000000..28a579b
--- /dev/null
+++ b/deadbeef/PKGBUILD
@@ -0,0 +1,55 @@
+# Contributor: Alexey Yakovenko <waker@users.sourceforge.net>
+
+pkgname=deadbeef
+pkgver=1.8.8
+pkgrel=1
+pkgdesc='A GTK+ audio player for GNU/Linux.'
+arch=('x86_64')
+url='http://deadbeef.sourceforge.net'
+license=('GPL2')
+depends=('alsa-lib' 'hicolor-icon-theme' 'desktop-file-utils' 'jansson')
+makedepends=('libvorbis' 'libmad' 'flac' 'curl' 'imlib2' 'wavpack' 'libsndfile' 'libcdio' 'libcddb'
+ 'libx11' 'faad2' 'zlib' 'intltool' 'pkgconfig' 'libpulse' 'libzip' 'libsamplerate' 'libdispatch'
+ 'yasm' 'ffmpeg' 'gtk2' 'gtk3')
+optdepends=('gtk2: for the GTK2 interface'
+ 'gtk3: for the GTK3 interface'
+ 'libsamplerate: for Resampler plugin'
+ 'libvorbis: for Ogg Vorbis playback'
+ 'libmad: for MP1/MP2/MP3 playback'
+ 'mpg123: for MP1/MP2/MP3 playback'
+ 'flac: for FLAC playback'
+ 'curl: for Last.fm scrobbler, SHOUTcast, Icecast, Podcast support'
+ 'imlib2: for artwork plugin'
+ 'wavpack: for WavPack playback'
+ 'libsndfile: for Wave playback'
+ 'libcdio: audio cd plugin'
+ 'libcddb: audio cd plugin'
+ 'faad2: for AAC/MP4 support'
+ 'dbus: for OSD notifications support'
+ 'pulseaudio: for PulseAudio output plugin'
+ 'libx11: for global hotkeys plugin'
+ 'zlib: for Audio Overload plugin'
+ 'libzip: for vfs_zip plugin'
+ 'ffmpeg: for ffmpeg plugin'
+ 'libdispatch: for last.fm plugin')
+
+source=("https://sourceforge.net/projects/deadbeef/files/travis/linux/${pkgver}/deadbeef-${pkgver}.tar.bz2")
+sha512sums=('399f0e70eca5e102a9e73ff03199c89c6f28f3e0da96e793316d1af83f00e71f09f6cc81a3fd0b0f0d52fe9e0195a3b9ffb0cf7e7708c3ea7085f33a5ec08b47')
+
+prepare() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ export CC=/usr/bin/clang
+ export CXX=/usr/bin/clang++
+ ./configure --prefix=/usr
+}
+
+build () {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="$pkgdir" install
+}