sys-apps/musl-locales: Added locale program for musl libc
This commit is contained in:
parent
61ce495a8b
commit
6cc3ecc2b7
|
@ -0,0 +1,2 @@
|
||||||
|
EBUILD musl-locales-9999.ebuild 450 BLAKE2B 83542c591d2818ce7c62ac2c211c968b6913054b9dd9486de4da83214f7292cc21d64f1b43f533f340799c52bcc7792d73659ad931b8c317d2ac09fd228763c2 SHA512 e341181e9d446a498f1fdd68bf25775edc6eee045871573ed299d7dfe7bd7dd3b0a2da14d47d9df8ee53a2f751c49c287061ccab3c50e851f307e590d2bf0eb8
|
||||||
|
MISC metadata.xml 345 BLAKE2B 9f4ec4fd903d6c9c242debfb1bd7df245e71737b327027f9388bde3c126c8f24ea1ab5866652d3285c5f5efd9082eae7b5ca16586a77a69d67b0ff35b122dabd SHA512 63572ae56b612a7831029de91a84717358f59d9b1daa4ec70bc2596b8784a2e5f94ca8a6a05adf9f36a9fb962792029acbdc93858406f1fe0057c257e64ddb4d
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>alex@millerson.name</email>
|
||||||
|
<name>Alexander Miroshnichenko</name>
|
||||||
|
</maintainer>
|
||||||
|
<longdescription lang="en">
|
||||||
|
Locale program for musl libc
|
||||||
|
</longdescription>
|
||||||
|
</pkgmetadata>
|
|
@ -0,0 +1,22 @@
|
||||||
|
# Copyright 2020 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=7
|
||||||
|
|
||||||
|
DESCRIPTION="Locale program for musl libc"
|
||||||
|
HOMEPAGE="https://gitlab.com/rilian-la-te/musl-locales"
|
||||||
|
|
||||||
|
if [[ ${PV} == 9999 ]] ; then
|
||||||
|
inherit git-r3
|
||||||
|
EGIT_REPO_URI="https://gitlab.com/rilian-la-te/musl-locales.git"
|
||||||
|
fi
|
||||||
|
|
||||||
|
inherit cmake-utils
|
||||||
|
|
||||||
|
LICENSE="GPL-3"
|
||||||
|
SLOT="0"
|
||||||
|
IUSE=""
|
||||||
|
|
||||||
|
DEPEND="sys-libs/musl"
|
||||||
|
RDEPEND="${DEPEND}"
|
||||||
|
BDEPEND="sys-devel/gettext"
|
Loading…
Reference in New Issue