# Maintainer: Kamil ƚliwak pkgname=plasma5-applets-audio-device-switcher pkgver=0.2.0 pkgrel=1 pkgdesc="KDE Plasma 5 widget to change the default audio output device/sink" arch=('any') url="https://github.com/akrutzler/plasma-audio-device-switcher" license=('GPL2') depends=("plasma-workspace") makedepends=("cmake" "extra-cmake-modules") source=(https://github.com/akrutzler/plasma-audio-device-switcher/archive/$pkgver.tar.gz) sha256sums=('13060951049042df53720475b6145a1b6f35c11021792ab474fb780fb53fa715') prepare() { mkdir --parents build/ } build() { cd build/ export QT_SELECT=5 cmake "../plasma-audio-device-switcher-${pkgver}" -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release make } package() { cd build/ make install DESTDIR="$pkgdir/" }