cruxports/deadbeef/Pkgfile

31 lines
912 B
Plaintext
Raw Normal View History

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