blob: d5787ed2179b6102684d1da16be448ebe33e5dac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Locale program for musl libc"
HOMEPAGE="https://git.adelielinux.org/adelie/musl-locales"
SRC_URI="https://git.adelielinux.org/adelie/musl-locales/uploads/7e855b894b18ca4bf4ecb11b5bcbc4c1/${P}.tar.xz"
LICENSE="LGPL-3 MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 ~m68k ~mips ~ppc ppc64 ~riscv ~x86"
RDEPEND="!sys-libs/glibc"
src_configure() {
local mycmakeargs=(
-DLOCALE_PROFILE=OFF
)
cmake_src_configure
}
|