diff --git a/app-office/notesnook-bin/Manifest b/app-office/notesnook-bin/Manifest index fbb1d54..311e126 100644 --- a/app-office/notesnook-bin/Manifest +++ b/app-office/notesnook-bin/Manifest @@ -2,3 +2,5 @@ DIST notesnook-bin-3.0.24.amd64.AppImage 107747451 BLAKE2B ee91ba2bd78de574de7b1 DIST notesnook-bin-3.0.24.arm64.AppImage 108015837 BLAKE2B 6edbcf3184cee8c2f174112e3a360db8bd5cd30debacce35401dfa017ed80325cd0aaa467d0b2d539aeb878aa7639fa0d69dfd6783f5c50c9e4a644e7b18acd9 SHA512 10dc89bb69d4f5bdeb8acbabbd0f454703da1f6df4374843365da4bae5a9830a480c296bcf0bc9c3ff68cb1154617d4a23b540f2b2ee416f90f43e37d52ade03 DIST notesnook-bin-3.0.25.amd64.AppImage 107751479 BLAKE2B 2d9a7dcbf5b24e3e03976a9d71e57a6c83037b36392f5832a1af79a7ca8a49798c6e0003b8b3a1ee5b7af09c5a068b801733568f3397885099b4194866b7d2eb SHA512 205203683a241f5b7a847e499fe1ee6e987cc952df58bfcdebe6ba8d03c11598fa499b1427eb052bc16ca412123b384c22c8438e73c80dac612e525776828e08 DIST notesnook-bin-3.0.25.arm64.AppImage 108019848 BLAKE2B 501ad27c37bfcc55972f48c6ffa4811ba518621c4211b2dcea743d1c94370e9efef974493bb07e5e1c72cd81d195a6c78a239d0564ad5d0342372e191f8d0b9c SHA512 6e3898cda4ff0b82574eca79c75c2ad09ef75810cabf125c386428501948823d50bad29819e3354627e7395235ebd8a97762fa94f8a726bb808ec78cecdc41f1 +DIST notesnook-bin-3.0.26.amd64.AppImage 107812808 BLAKE2B 22acc037fe3cd63c1d00d3bc67da3609b90173a3065c02c5a4e8b4c746e5c697e31d162898856b4ec1ad96e86f91e3037f073238ea9489ad4f31c93be6477fef SHA512 c901d92abc9d9b8ee123e39b000a62f51e744511d4c8ce53d9160d21c0fd7fb30ca66a69a38782b84d070a6dd1e2c42bc1e911168e9c5cea62aabe345c5c1a7b +DIST notesnook-bin-3.0.26.arm64.AppImage 108081211 BLAKE2B 146708819346224a81ec9040148ade3fd5661e00c21adb6b9fb3d506f73d09ce81bc15f69acb92a1e2621bd9c0a90bc286323667bf1a255e0b86559ba958fccf SHA512 b460b4de347bcb5d114d2051f66f95f34dc35dfd8a1334ecfb92cfd992843cde005f5753e66a1f922311ba4e2f05f0c60199278595a56e2cd737966331122461 diff --git a/app-office/notesnook-bin/notesnook-bin-3.0.26.ebuild b/app-office/notesnook-bin/notesnook-bin-3.0.26.ebuild new file mode 100644 index 0000000..431ab99 --- /dev/null +++ b/app-office/notesnook-bin/notesnook-bin-3.0.26.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION='End-to-end encrypted note taking alternative to Evernote' +HOMEPAGE='https://notesnook.com/ https://github.com/streetwriters/notesnook' +RELEASE_URI=https://github.com/streetwriters/notesnook/releases +SRC_URI=" + amd64? ( ${RELEASE_URI}/download/v${PV}/notesnook_linux_x86_64.AppImage -> ${P}.amd64.AppImage ) + arm64? ( ${RELEASE_URI}/download/v${PV}/notesnook_linux_arm64.AppImage -> ${P}.arm64.AppImage ) +" +S="${WORKDIR}" +LICENSE='GPL-3' +SLOT='0' +KEYWORDS='~amd64 ~arm64' +RESTRICT='strip' +RDEPEND='sys-fs/fuse:0' +QA_PREBUILT='*' + +inherit desktop + +src_install() { + if use amd64; then + newbin "${DISTDIR}/${P}.amd64.AppImage" notesnook + elif use arm64; then + newbin "${DISTDIR}/${P}.arm64.AppImage" notesnook + fi + doicon "${FILESDIR}"/notesnook.png + make_desktop_entry "${PN}" Notesnook notesnook 'Office;' +}