www-client/nyxt: new package, add 9999

Signed-off-by: Tony Olagbaiye <bqv@fron.io>
This commit is contained in:
Tony Olagbaiye
2022-05-18 17:40:41 +01:00
parent 0c232ff22b
commit cc7eaaba39
3 changed files with 47 additions and 0 deletions

2
www-client/nyxt/Manifest Normal file
View File

@@ -0,0 +1,2 @@
EBUILD nyxt-9999.ebuild 815 BLAKE2B 62dcc6c380649f82d7b7c1404444da8ef9d170e39f66107796699055f90877c2f216db8a309d48ab01e355c239f9d3d7f13448df5395895e66741efb3db6ee57 SHA512 2b5acf4483191e270449d5426c43dfad05f2a14d7d32b1d5096b837a8414f79b40fe9859ae55bf864affe0a8e0533a751b9bd500acdbfbb98b4367e2a54f6c65
MISC metadata.xml 258 BLAKE2B ffaa7afa16b051cc19f6db080434f7d00fe3f9007e1ff66374deb7bc02d4dfdf584a0488ac32779b2d90c8e3bed9ed4eaa6bda3c942aaf95b6f3bd61763daa9b SHA512 feabf395256f030d83be82578309675861da1cd515f67dc3319d889810b39cc7fd74bfd2f61e33860f2390b1953501c9c2ebe9070e802fe9478b5ad26e08b254

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>thinkplex@riseup.net</email>
<name>Quentin Lombardo</name>
</maintainer>
</pkgmetadata>

View File

@@ -0,0 +1,37 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Nyxt - the internet on your terms."
HOMEPAGE="https://nyxt.atlas.engineer/"
if [[ "${PV}" == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/atlas-engineer/nyxt.git"
else
SRC_URI="https://github.com/atlas-engineer/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="BSD CC-BY-SA-3.0"
SLOT="0"
IUSE="X spell"
RDEPEND=""
DEPEND="${RDEPEND}
net-libs/webkit-gtk
net-libs/glib-networking
gnome-base/gsettings-desktop-schemas
sys-libs/libfixposix
X? ( x11-misc/xclip )
spell? ( app-text/enchant )"
BDEPEND=">=dev-lisp/sbcl-2.0.0"
src_prepare(){
default
ls _build/quicklisp-client
}
src_compile(){
emake all || die emake failed
}