why not enable gtk3
Description:
hello, why -Dgtk=false
in build?
It is more beautiful to use gtk in gnome. as shown in the figure, it can be supported in both modes at the same time, and audacious-plugins also need to be supported
For future 4.4 releases, it can be compiled like this
build() {
cd "$pkgname"
./autogen.sh
./configure \
--prefix=/usr \
--enable-gtk3 \
--enable-qt \
--with-buildstamp='Arch Linux'
make -j $(($(nproc) - 1))
}
package() {
cd "$pkgname"
make DESTDIR="$pkgdir" install
install -Dm644 contrib/audacious.appdata.xml -t "$pkgdir/usr/share/metainfo"
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
Edited by yuh ldr