sys-apps/musl-locales: Added locale program for musl libc

pull/1/head
Alexander Miroshnichenko 2020-04-08 09:34:14 +03:00
parent 61ce495a8b
commit 6cc3ecc2b7
Signed by: alex
GPG Key ID: E93720C6C73A77F4
3 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,2 @@
EBUILD musl-locales-9999.ebuild 450 BLAKE2B 83542c591d2818ce7c62ac2c211c968b6913054b9dd9486de4da83214f7292cc21d64f1b43f533f340799c52bcc7792d73659ad931b8c317d2ac09fd228763c2 SHA512 e341181e9d446a498f1fdd68bf25775edc6eee045871573ed299d7dfe7bd7dd3b0a2da14d47d9df8ee53a2f751c49c287061ccab3c50e851f307e590d2bf0eb8
MISC metadata.xml 345 BLAKE2B 9f4ec4fd903d6c9c242debfb1bd7df245e71737b327027f9388bde3c126c8f24ea1ab5866652d3285c5f5efd9082eae7b5ca16586a77a69d67b0ff35b122dabd SHA512 63572ae56b612a7831029de91a84717358f59d9b1daa4ec70bc2596b8784a2e5f94ca8a6a05adf9f36a9fb962792029acbdc93858406f1fe0057c257e64ddb4d

View File

@ -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>

View File

@ -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"