Install this version:
emerge -a =dev-lisp/buildapp-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-lisp/buildapp-9999
Or alternatively:
emerge --autounmask-write -a =dev-lisp/buildapp-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit common-lisp-3 git-r3
DESCRIPTION="Buildapp makes it easy to build application executables with SBCL"
HOMEPAGE="https://github.com/xach/buildapp"
EGIT_REPO_URI="https://github.com/xach/${PN}.git"
LICENSE="BSD"
SLOT="0"
IUSE="runtime-options"
RESTRICT="strip"
BDEPEND="dev-lisp/asdf"
QA_FLAGS_IGNORED="/usr/bin/buildapp"
src_prepare() {
default
# https://github.com/sbcl/sbcl/commit/cab2298
if use runtime-options ; then
sed -i '/save-runtime-options/s| t| :accept-runtime-options|' buildapp.lisp \
|| die "sed failed for buildapp.lisp"
fi
}
src_compile() {
emake
}
src_install() {
common-lisp-3_src_install
dobin buildapp
}
Manage flags for this package:
euse -i <flag> -p dev-lisp/buildapp |
euse -E <flag> -p dev-lisp/buildapp |
euse -D <flag> -p dev-lisp/buildapp
dev-lisp/asdf