blob: ea61998c52d807b119b3d762998f514b48f23e40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2026 BaldEagleOS Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Gentoo repository creation, qualification and publication"
HOMEPAGE="https://git.baldeagleos.com/osforge"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
S="${WORKDIR}"
RDEPEND="~app-admin/osforge-${PV}"
src_install() {
:
}
pkg_postinst() {
elog "Run crucible help for the repository workflow."
elog "New repositories start with manual publication."
}
|