cruxports/deadbeef/Pkgfile

34 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-02-26 14:04:55 -05:00
# Description: GTK audio player
# URL: http://deadbeef.sf.net
# Maintainer: John McQuah, jmcquah at disroot dot org
2022-04-26 07:51:12 -04:00
# Depends on: alsa-lib gtk3 jansson libdispatch libmad yasm
2022-02-26 14:04:55 -05:00
# Optional: libcdio libsndfile libsamplerate mpg123 flac libvorbis ffmpeg4 faad2 wildmidi dbus pulseaudio
name=deadbeef
2022-08-14 21:19:55 -04:00
version=1.9.1
2022-02-26 14:04:55 -05:00
release=1
source=(https://sourceforge.net/projects/$name/files/travis/linux/$version/$name-$version.tar.bz2 dbq)
build() {
cd $name-$version
2022-10-07 19:41:17 -04:00
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"
2022-10-07 19:41:17 -04:00
CC=clang CXX=clang++ ./configure $PKGMK_DEADBEEF
2022-02-26 14:04:55 -05:00
make
make DESTDIR=$PKG install
# clean up footprint
find $PKG/usr/lib -name "*.la" -exec rm -f '{}' +
2022-10-07 19:41:17 -04:00
rm -f $PKG/usr/share/$name/doc/{COPYING,ChangeLog,README}*
2022-02-26 14:04:55 -05:00
# 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
}