34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
# Description: GTK audio player
|
|
# URL: http://deadbeef.sf.net
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: alsa-lib gtk3 jansson libdispatch libmad yasm
|
|
# Optional: libcdio libsndfile libsamplerate mpg123 flac libvorbis ffmpeg4 faad2 wildmidi dbus pulseaudio
|
|
|
|
name=deadbeef
|
|
version=1.9.1
|
|
release=1
|
|
source=(https://sourceforge.net/projects/$name/files/travis/linux/$version/$name-$version.tar.bz2 dbq)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
PKGMK_DEADBEEF="--disable-gtk2 --disable-nls --prefix=/usr --docdir=/usr/share/deadbeef/doc"
|
|
# compilation fails with newest ffmpeg; only enable the plugin when ffmpeg4 is present
|
|
prt-get isinst ffmpeg4 && export PKG_CONFIG_PATH='/usr/lib/ffmpeg4/pkgconfig' \
|
|
|| PKGMK_DEADBEEF+=" --disable-ffmpeg"
|
|
CC=clang CXX=clang++ ./configure $PKGMK_DEADBEEF
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
# clean up footprint
|
|
find $PKG/usr/lib -name "*.la" -exec rm -f '{}' +
|
|
rm -f $PKG/usr/share/$name/doc/{COPYING,ChangeLog,README}*
|
|
|
|
# provide a plugin for nnn
|
|
if prt-get isinst nnn; then
|
|
mkdir -p $PKG/usr/share/nnn/plugins
|
|
install -m 0755 $SRC/dbq $PKG/usr/share/nnn/plugins
|
|
fi
|
|
}
|