mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 14:43:27 -04:00
sys-apps/pkgit: new package, add 1.0.0, 9999
Signed-off-by: Theron York <theron.york@cloudnuke.org>
This commit is contained in:
14
sys-apps/pkgit/metadata.xml
Normal file
14
sys-apps/pkgit/metadata.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>theron.york@cloudnuke.org</email>
|
||||
<name>Theron York</name>
|
||||
</maintainer>
|
||||
<longdescription>
|
||||
pkgit is an unconventional package manager designed to compile and install
|
||||
packages directly from their git repositories. It uses C with Lua for
|
||||
configuration and supports dependency resolution, version pinning, and
|
||||
custom build scripts (bldit.lua).
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
28
sys-apps/pkgit/pkgit-1.0.0.ebuild
Normal file
28
sys-apps/pkgit/pkgit-1.0.0.ebuild
Normal file
@@ -0,0 +1,28 @@
|
||||
# Copyright 2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit git-r3
|
||||
|
||||
DESCRIPTION="Unconventional package manager that compiles & installs packages from git repos"
|
||||
HOMEPAGE="https://git.symlinx.net/pkgit"
|
||||
|
||||
EGIT_REPO_URI="https://git.symlinx.net/pkgit"
|
||||
EGIT_TAG="${PV}"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="dev-lang/luajit:="
|
||||
DEPEND="${RDEPEND}
|
||||
dev-build/make"
|
||||
|
||||
src_compile() {
|
||||
emake || die "emake failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install || die "install failed"
|
||||
}
|
||||
28
sys-apps/pkgit/pkgit-9999.ebuild
Normal file
28
sys-apps/pkgit/pkgit-9999.ebuild
Normal file
@@ -0,0 +1,28 @@
|
||||
# Copyright 2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit git-r3
|
||||
|
||||
DESCRIPTION="Unconventional package manager that compiles & installs packages from git repos"
|
||||
HOMEPAGE="https://git.symlinx.net/pkgit"
|
||||
|
||||
EGIT_REPO_URI="https://git.symlinx.net/pkgit"
|
||||
EGIT_BRANCH="master"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS=""
|
||||
|
||||
RDEPEND="dev-lang/luajit:="
|
||||
DEPEND="${RDEPEND}
|
||||
dev-build/make"
|
||||
|
||||
src_compile() {
|
||||
emake || die "emake failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install || die "install failed"
|
||||
}
|
||||
Reference in New Issue
Block a user