Add Pocket Casts package

This commit is contained in:
Sravan Balaji
2024-05-13 17:54:01 -04:00
parent ffcc0e8f2e
commit ccfb461fb4
3 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST pocket-casts-linux-1.4.0-x86_64.AppImage 84623385 BLAKE2B b8e05c0270a2fa8a7620f1c5c8796c72dd3274c70a94e7d3d4e6fb3dd4862b7253702a38dcf55d805950c8e43ca4d22fdc7718e341c4dfb4e07ed6bb2e08f8f7 SHA512 b6cda14a6b2a0c98accef32ef099a25dcb511e1a4b364774ae1debacf1eff981a91e02c9f8d529d94b6ea79c7006a03de3a2a91400c50c41479148f9e7f2f0a7

View File

@ -0,0 +1,7 @@
[Desktop Entry]
Type=Application
Name=Pocket Casts
Icon=pocket-casts
Exec=pocket-casts
Terminal=false
Categories=Audio;Player;AudioVideo

View File

@ -0,0 +1,29 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Electron wrapper around the Pocket Casts web app with support for MPRIS (media controls)"
HOMEPAGE="https://github.com/fuadsaud/pocket-casts-linux"
SRC_URI="https://github.com/fuadsaud/pocket-casts-linux/releases/download/v${PV}/pocket-casts-linux-${PV}-x86_64.AppImage"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="strip"
RDEPEND="
sys-fs/fuse:0
"
S=${WORKDIR}
QA_PREBUILT="*"
src_install() {
cp "${DISTDIR}/pocket-casts-linux-${PV}-x86_64.AppImage" pocket-casts || die
dobin pocket-casts
insinto /usr/share/applications
doins ${FILESDIR}/pocket-casts.desktop
}