# Contributor: Matthew Bauer # Contributor: TingPing # Contributor: Christopher Eby # Maintainer: Steven Allen pkgname=pithos pkgver=1.6.0 pkgrel=1 pkgdesc='Native Pandora Radio client' arch=('any') url="https://pithos.github.io/" license=('GPL3') depends=('gtk3' 'python-gobject' 'libsecret' 'python-cairo' 'gst-plugins-good' 'gst-libav' 'gst-plugins-base') optdepends=('libkeybinder3: for media keys plugin' 'python-pacparser: PAC proxy support' 'python-pylast: Last.fm scrobbling support' 'python-systemd: Logging to the system journal') makedepends=('meson' 'appstream-glib') source=( "https://github.com/pithos/pithos/releases/download/${pkgver}/pithos-${pkgver}.tar.xz" "systemd.service" ) sha256sums=('55c92b423d8bb23d1fc1c14e3cde95460b4f8ef59a375f9864827e126ac010ed' '6d29178697384fb046d9d25c6c2482f353a4484ec4f0a5b9080d1a26aa24f839') prepare() { cd "${srcdir}/${pkgname}-${pkgver}" echo "SystemdService=pithos.service" >> "data/io.github.Pithos.service.in" } build() { cd "${srcdir}" if [[ -d ./build/ ]]; then rm -rf ./build/ fi mkdir build meson "${pkgname}-${pkgver}" build --prefix=/usr } package() { cd "${srcdir}/build" DESTDIR="${pkgdir}" ninja install install -Dm644 "${srcdir}/systemd.service" "${pkgdir}/usr/lib/systemd/user/pithos.service" }