mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +03:00
77 lines
1.7 KiB
Text
77 lines
1.7 KiB
Text
# Contributor: Łukasz Jendrysik <scadu@yandex.com>
|
|
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Ariadne Conill <ariadne@dereferenced.org>
|
|
pkgname=audacious-plugins
|
|
pkgver=4.3
|
|
pkgrel=0
|
|
pkgdesc="A playlist-oriented media player with multiple interfaces (plugins)"
|
|
url="https://audacious-media-player.org/"
|
|
arch="all !s390x"
|
|
license="BSD-2-Clause AND BSD-3-Clause AND ISC AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND GPL-3.0-or-later"
|
|
depends="audacious"
|
|
install_if="audacious"
|
|
makedepends="
|
|
alsa-lib-dev
|
|
audacious-dev
|
|
autoconf
|
|
automake
|
|
curl-dev
|
|
dbus-glib-dev
|
|
faad2-dev
|
|
ffmpeg-dev
|
|
flac-dev
|
|
lame-dev
|
|
libcddb-dev
|
|
libcdio-dev
|
|
libcdio-paranoia-dev
|
|
libcue-dev
|
|
libmms-dev
|
|
libnotify-dev
|
|
libogg-dev
|
|
libopenmpt-dev
|
|
libsamplerate-dev
|
|
libsndfile-dev
|
|
libvorbis-dev
|
|
libxcomposite-dev
|
|
libxml2-dev
|
|
meson
|
|
mpg123-dev
|
|
neon-dev
|
|
pulseaudio-dev
|
|
sdl2-dev
|
|
wavpack-dev
|
|
"
|
|
subpackages="$pkgname-dbg $pkgname-lang"
|
|
source="http://distfiles.audacious-media-player.org/audacious-plugins-$pkgver.tar.bz2"
|
|
options="!check" # No test suite (or any plans for one)
|
|
|
|
build() {
|
|
case "$CARCH" in
|
|
arm*|aarch64)
|
|
local qtgl=false
|
|
;;
|
|
*)
|
|
local qtgl=true
|
|
;;
|
|
esac
|
|
abuild-meson \
|
|
-Db_lto=true \
|
|
-Dgtk=false \
|
|
-Dgtk3=false \
|
|
-Dqt=true \
|
|
-Dqt6=true \
|
|
-Dgl-spectrum=$qtgl \
|
|
. output
|
|
|
|
meson compile -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
|
# support not built, but installed anyway
|
|
rm -r "$pkgdir"/usr/share/audacious/Skins/Default/gtk-2.0/
|
|
}
|
|
|
|
sha512sums="
|
|
51ffb38917bc9cf13d433c39843b37cbad6ef2a0db8b5da65ba18f8e547c94cfb979f0c8f4413080c56bc33d4f2ae47f92679ee5c11225aa47d85abfd27c0810 audacious-plugins-4.3.tar.bz2
|
|
"
|