diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-11-16 20:27:11 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-11-16 20:30:12 +0100 |
commit | fc8456b315f9f1e798204a046ece5d3d7db5fb22 (patch) | |
tree | cd07619ea72785445f5899ccaeb5b27d504f4d9d /app-text/libnumbertext | |
parent | sys-libs/glibc: Stabilize 2.36-r5 amd64, #879213 (diff) | |
download | gentoo-fc8456b315f9f1e798204a046ece5d3d7db5fb22.tar.gz gentoo-fc8456b315f9f1e798204a046ece5d3d7db5fb22.tar.bz2 gentoo-fc8456b315f9f1e798204a046ece5d3d7db5fb22.zip |
app-text/libnumbertext: add 1.0.11
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-text/libnumbertext')
-rw-r--r-- | app-text/libnumbertext/Manifest | 1 | ||||
-rw-r--r-- | app-text/libnumbertext/libnumbertext-1.0.11.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/app-text/libnumbertext/Manifest b/app-text/libnumbertext/Manifest index 24f9ceff77cf..a76d1c8f5b5e 100644 --- a/app-text/libnumbertext/Manifest +++ b/app-text/libnumbertext/Manifest @@ -1 +1,2 @@ DIST libnumbertext-1.0.10.tar.xz 292852 BLAKE2B 1dfc5bd974525a3923325357c30cc80ecac0be856288cfc9effe13a0cda5f45eba22b333b606113bea8dff0bc08333a4b203f539b860ec48e214c35bc4dacb41 SHA512 6cb1b09b43c77f9fe1928d72deabdd06cbb3f7185823fcf045855b26ea6e0e017b2eba9dcd4725161012ed6d37a416c98b838145aa418bd0bd79ce52bf456417 +DIST libnumbertext-1.0.11.tar.xz 302676 BLAKE2B 48fae62c95c20991c9fe7012a0ad59b5a2ffd88d0866714e88f8d4d72e94f3d6c0edb0977da324a26c83ee1af73367fae88bbf7ad0792be371ad4bfbe63ef8d5 SHA512 0c4d2b98d8cef46a2c51c4265f96ac2af6e58d3b8e63e7b6a40134e86d1dc7bec38e048abf227d1ebad7774ba8a6d68a1fac464739914b2d14786c309819c836 diff --git a/app-text/libnumbertext/libnumbertext-1.0.11.ebuild b/app-text/libnumbertext/libnumbertext-1.0.11.ebuild new file mode 100644 index 000000000000..912a80af891c --- /dev/null +++ b/app-text/libnumbertext/libnumbertext-1.0.11.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Number to number name and money text conversion libraries" +HOMEPAGE="https://github.com/Numbertext/libnumbertext" +SRC_URI="https://github.com/Numbertext/${PN}/releases/download/${PV}/${P}.tar.xz" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~x86" +IUSE="" + +src_configure() { + econf \ + --disable-werror +} + +src_install() { + default + find "${D}" -name '*.la' -type f -delete || die +} |