diff --git a/media-sound/pocket-casts/Manifest b/media-sound/pocket-casts/Manifest new file mode 100644 index 0000000..8e1a5f0 --- /dev/null +++ b/media-sound/pocket-casts/Manifest @@ -0,0 +1 @@ +DIST pocket-casts-linux-1.4.0-x86_64.AppImage 84623385 BLAKE2B b8e05c0270a2fa8a7620f1c5c8796c72dd3274c70a94e7d3d4e6fb3dd4862b7253702a38dcf55d805950c8e43ca4d22fdc7718e341c4dfb4e07ed6bb2e08f8f7 SHA512 b6cda14a6b2a0c98accef32ef099a25dcb511e1a4b364774ae1debacf1eff981a91e02c9f8d529d94b6ea79c7006a03de3a2a91400c50c41479148f9e7f2f0a7 diff --git a/media-sound/pocket-casts/files/pocket-casts.desktop b/media-sound/pocket-casts/files/pocket-casts.desktop new file mode 100644 index 0000000..5fcaaec --- /dev/null +++ b/media-sound/pocket-casts/files/pocket-casts.desktop @@ -0,0 +1,7 @@ +[Desktop Entry] +Type=Application +Name=Pocket Casts +Icon=pocket-casts +Exec=pocket-casts +Terminal=false +Categories=Audio;Player;AudioVideo diff --git a/media-sound/pocket-casts/pocket-casts-1.4.0.ebuild b/media-sound/pocket-casts/pocket-casts-1.4.0.ebuild new file mode 100644 index 0000000..f2f8aff --- /dev/null +++ b/media-sound/pocket-casts/pocket-casts-1.4.0.ebuild @@ -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 +}