blob: c50b7a93e29b8496707b9112c4c4de63b9fd2950 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 2023 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"
src_configure() {
local mycmakeargs=(
-DLOCALE_PROFILE=OFF
)
cmake_src_configure
}
|