6180311272
Fixes: -Fixed showing "What's new" dialog, even if changes couldn't be loaded. -Fixed a crash when trying to toggle dark theme. -Fixed not sorting by track length properly (#66). -Fixed tray icon options not showing error messages. Changes: -Improved high DPI support for icons (#57). -Width of columns in track list can now be resized depending on window size (enabled by default). -Reworked device selection, which should improve performance and reduce random crashes. -Improved performance with track playing. -Added tooltips to track list and search results. -Tracks now always play in order of track number, except in library.
30 lines
762 B
Makefile
30 lines
762 B
Makefile
# $NetBSD: Makefile,v 1.8 2021/03/11 22:11:27 pin Exp $
|
|
|
|
DISTNAME= spotify-qt-3.5
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=kraxarn/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pin@NetBSD.org
|
|
HOMEPAGE= https://github.com/kraxarn/spotify-qt/
|
|
COMMENT= Lightweight Spotify client using Qt
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
USE_CMAKE= yes
|
|
USE_LANGUAGES= c++
|
|
|
|
CONFIGURE_DIRS= build
|
|
CMAKE_ARG_PATH= ..
|
|
|
|
CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Release
|
|
CMAKE_ARGS+= -DCMAKE_INSTALL_PREFIX=${PREFIX}
|
|
|
|
pre-configure:
|
|
${MKDIR} -p ${WRKSRC}/build
|
|
|
|
DEPENDS+= librespot-[0-9]*:../../audio/librespot
|
|
|
|
.include "../../x11/qt5-qtbase/buildlink3.mk"
|
|
.include "../../x11/qt5-qtsvg/buildlink3.mk"
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|