mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-19 15:58:56 -04:00
54 lines
1.0 KiB
Bash
54 lines
1.0 KiB
Bash
# Copyright 2023-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
MY_P="${PN}-${PV//./-}"
|
|
|
|
DESCRIPTION="Small embeddable Javascript engine"
|
|
HOMEPAGE="https://bellard.org/quickjs/"
|
|
SRC_URI="https://bellard.org/quickjs/${MY_P}.tar.xz"
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="lto"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-2020.11.08_Remove-TTY-check-in-test.patch"
|
|
"${FILESDIR}/${PN}-2021-03-27-respect-env.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
sed -i \
|
|
-e 's;prefix=/usr/local;prefix=/usr;' \
|
|
-e '/$(STRIP) .*/d' \
|
|
Makefile || die "Failed setting prefix"
|
|
|
|
sed -Ei '/^\s*(CC|AR)=/d' Makefile \
|
|
|| die "Failed to remove hard-coded tools."
|
|
|
|
sed -Ei 's/(^\s*(C|LD)FLAGS)=/\1\+=/' Makefile \
|
|
|| die "Failed to change build flag assignment into addition."
|
|
|
|
export CC="$(tc-getCC)"
|
|
export AR="$(tc-getAR)"
|
|
|
|
default
|
|
}
|
|
|
|
src_compile() {
|
|
if use lto; then
|
|
CONFIG_LTO=$(use lto) emake
|
|
else
|
|
emake
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${ED}" PREFIX=/usr install
|
|
}
|