Added app-office/notesnook-bin-3.2.0
This commit is contained in:
@ -1,5 +1,8 @@
|
||||
AUX notesnook.png 8808 BLAKE2B 35a26a036eaadc579cf3c6679fa54999174f35cdbbc2ecfc78765b3ed48af4c8265b463d474d56d369a6880cd7f69b2114c7a69a9c1ef0f3ee03dea22828f054 SHA512 53ac1638926e8d6192f43f12528c9e9518e9c28f215c8ef4de59e957fbfd409a094badfee3a88819c67a488e5cb02778a66800d18ba19edea26c3d462b4428b8
|
||||
DIST notesnook-bin-3.1.1.amd64.AppImage 112798706 BLAKE2B 81d59317559234d44cf5023f19e0da38531023bbc3f788d3f84e940c2264f8f60a240e57243ae3fb6a2b59f50741dbe3b7b941ed3c2b607c2e6fc6a9ea393d70 SHA512 be9d4f771fd44b79c24beafc10a735cdc1ff8989dd0b6941b838dc17d95cf1f4664bdb606bea169d975a06fb2cd86ae264dc1598d77dddc9b2a97c196be113eb
|
||||
DIST notesnook-bin-3.1.1.arm64.AppImage 113066892 BLAKE2B 5fb560e0c0d6797d26f86b41223da53baca7be5f0fb34c3431223fc374f4a9f4f32f72f1f71825f789170b12f1e9f10e544f2a6a974420e38b15ce61f6b19825 SHA512 f763905ac06cbdbe334c6dc1d96bb6a7310072c76448d703dcb6295daed9de279a7ef91533bfd5713dc53e97c2f2e8cacb34231d224365535cbbcc8aa98d8fce
|
||||
DIST notesnook-bin-3.2.0.amd64.AppImage 112746688 BLAKE2B 98bcf1916719ae699c77e656ad2a713d9168f2fc73fb49d87c0edda9e22c90d84c8347f15c06500d8fe007447b89bcb5f5f83c2a1fb48c55e8e00d7f9bf52493 SHA512 cedae2ee14ffdb94dd579dae6f0a1cd824bdce16e94b5143c74f49d4e40451651043f4416bfd29e47f15dd4603cf2e95a752cdbb21f6fd7cc2c1f1c7b47fd120
|
||||
DIST notesnook-bin-3.2.0.arm64.AppImage 113099493 BLAKE2B 968af60353ee134f5c8359a8ac99fef6c780d9f1ce5645e0b92220d8ba8138d96117891fcca54ba582fd91e57a91871d02fc7c69ff65762dbfedf187cdd032cd SHA512 e0d94596f24b6eceb1b204d1d0e109ae19489d5d438e8cd335c945244db543e9c4a4ee084f26fb1cfb7e4a41e6849b6c41762291cd38d111dabb7a28670a3e8d
|
||||
EBUILD notesnook-bin-3.1.1.ebuild 934 BLAKE2B 834250293860f83bea2ffafbea70a4ad96d0d76b2b52f9f140daeeeaefd05b596b1694cacad4ea86d00cc6588dde11b843f60b9a94afc6db2dd9ea4a713f61b3 SHA512 b3f78180a3132157a83fced6d2b7492a91c80bb3bdacb89ca1b062ed6bfbbc5112af0b1e3599f42c48cd0b9a895f3b6a19a8435520d00b11a7939d72041ee95d
|
||||
EBUILD notesnook-bin-3.2.0.ebuild 934 BLAKE2B 834250293860f83bea2ffafbea70a4ad96d0d76b2b52f9f140daeeeaefd05b596b1694cacad4ea86d00cc6588dde11b843f60b9a94afc6db2dd9ea4a713f61b3 SHA512 b3f78180a3132157a83fced6d2b7492a91c80bb3bdacb89ca1b062ed6bfbbc5112af0b1e3599f42c48cd0b9a895f3b6a19a8435520d00b11a7939d72041ee95d
|
||||
MISC metadata.xml 975 BLAKE2B 215a8104669acf3be4083fc696442bbdd857db0e6a4cbc05164bbd2dfe260f79698362f7e505729aafbf8db228e8ac7c8298d730a778f8696265d3d67d294931 SHA512 60e73c4d77eb724856cafc6bbd481350c3e19ab616019abc19b73dbee9afbad5c270a4b45314c763ca9662e3ce72ab08075e2a0438e68ef9e7071334274b7d18
|
||||
|
31
app-office/notesnook-bin/notesnook-bin-3.2.0.ebuild
Normal file
31
app-office/notesnook-bin/notesnook-bin-3.2.0.ebuild
Normal file
@ -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;'
|
||||
}
|
13
metadata/md5-cache/app-office/notesnook-bin-3.2.0
Normal file
13
metadata/md5-cache/app-office/notesnook-bin-3.2.0
Normal file
@ -0,0 +1,13 @@
|
||||
DEFINED_PHASES=install
|
||||
DESCRIPTION=End-to-end encrypted note taking alternative to Evernote
|
||||
EAPI=8
|
||||
HOMEPAGE=https://notesnook.com/ https://github.com/streetwriters/notesnook
|
||||
INHERIT=desktop
|
||||
KEYWORDS=~amd64 ~arm64
|
||||
LICENSE=GPL-3
|
||||
RDEPEND=sys-fs/fuse:0
|
||||
RESTRICT=strip
|
||||
SLOT=0
|
||||
SRC_URI=amd64? ( https://github.com/streetwriters/notesnook/releases/download/v3.2.0/notesnook_linux_x86_64.AppImage -> notesnook-bin-3.2.0.amd64.AppImage ) arm64? ( https://github.com/streetwriters/notesnook/releases/download/v3.2.0/notesnook_linux_arm64.AppImage -> notesnook-bin-3.2.0.arm64.AppImage )
|
||||
_eclasses_=desktop 3a72ffe0d8e1dd73af3a1c8c15a59fed
|
||||
_md5_=d6d19d36b02ef3cd40cc2fdd5bdfbde0
|
Reference in New Issue
Block a user