1
0
Fork 0

app-misc/quickscreenvid: new package, add 9999

Signed-off-by: Horea Christian <chr@chymera.eu>
This commit is contained in:
Horea Christian 2022-12-11 22:45:09 -05:00
parent dcb5755236
commit 8aaff60b78
No known key found for this signature in database
GPG Key ID: 161C0BE6255333D3
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,11 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>chr@chymera.eu</email>
<name>Horea Christian</name>
</maintainer>
<upstream>
<remote-id type="github">TheChymera/quickscreenvid</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,30 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="The Personal Pastebin"
HOMEPAGE="https://github.com/TheChymera/quickscreenvid"
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/TheChymera/quickscreenvid.git"
inherit git-r3
else
SRC_URI="https://github.com/TheChymera/quickscreenvid/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/quickscreenvid-${PV}"
fi
LICENSE="MIT"
SLOT="0"
DEPEND=""
RDEPEND="
gui-apps/slurp
gui-apps/wf-recorder
"
RESTRICT="test"
src_install() {
dobin "bin/quickscreenvid.sh"
dobin "bin/quickscreenvid_kill.sh"
}