mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 14:43:27 -04:00
27 lines
573 B
Bash
27 lines
573 B
Bash
# 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"
|
|
}
|