Add gui-apps/nixnote-bin

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly@ya.ru>
This commit is contained in:
Vitaly Zdanevich
2023-03-27 03:26:45 +04:00
parent 0fd47e5239
commit 7bc75028c8
3 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST NixNote2-x86_64.AppImage 54973632 BLAKE2B 4d3e2e92734dc95f27f7240cb940d20a8eb253ccd79210f08407724c012fdbd2dec81916906bddf85ff72cd30997adb6bd9c57c634d2392c1b422109aa4ed2b8 SHA512 821959221aaa9605f854bfaecb29801f3ed386e62c83d76a09accb4899bcdf6f8c3fa55d04a1d045ef56aa96aeea84266050f027d0d155b5ccfb09cc1787c441

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<name>Vitaly Zdanevich</name>
<email>zdanevich.vitaly@ya.ru</email>
</maintainer>
<upstream>
<remote-id type="github">robert7/nixnote2</remote-id>
<bugs-to>https://github.com/robert7/nixnote2/issues</bugs-to>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,27 @@
# Copyright 1999-2022 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Free and open source note taking app, compatible with Evernote sync server"
HOMEPAGE="https://github.com/robert7/nixnote2"
SRC_URI="https://github.com/robert7/nixnote2/releases/download/continuous-develop/NixNote2-x86_64.AppImage"
KEYWORDS="~amd64"
LICENSE="GPL-3"
SLOT="0"
IUSE=""
RESTRICT="strip"
RDEPEND="sys-fs/fuse:0"
S="${WORKDIR}"
QA_PREBUILT="*"
S="${WORKDIR}"
src_install() {
cp "${DISTDIR}/NixNote2-x86_64.AppImage" nixnote-bin || die
dobin nixnote-bin
}