diff options
author | Joonas Niilola <juippis@gentoo.org> | 2020-10-16 08:25:45 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-10-16 09:03:56 +0300 |
commit | 5cf931310e8b748a27d2718e7dc1e2d333b45d2a (patch) | |
tree | 71b4374bd0192d638a5e6534669fe1284e5cb218 /dev-util/hfstospell | |
parent | sys-apps/ethtool: Removed old (diff) | |
download | gentoo-5cf931310e8b748a27d2718e7dc1e2d333b45d2a.tar.gz gentoo-5cf931310e8b748a27d2718e7dc1e2d333b45d2a.tar.bz2 gentoo-5cf931310e8b748a27d2718e7dc1e2d333b45d2a.zip |
dev-util/hfstospell: bump to 0.5.2
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-util/hfstospell')
-rw-r--r-- | dev-util/hfstospell/Manifest | 1 | ||||
-rw-r--r-- | dev-util/hfstospell/hfstospell-0.5.2.ebuild | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/dev-util/hfstospell/Manifest b/dev-util/hfstospell/Manifest index b659119c4458..d6cc1b658582 100644 --- a/dev-util/hfstospell/Manifest +++ b/dev-util/hfstospell/Manifest @@ -1 +1,2 @@ DIST hfstospell-0.5.1.tar.gz 152056 BLAKE2B fa589908312bd4a4b40b88b221ee5f6bdc281d6151984a87b237372b0141157db87b3494e357d74a17f0ee137fd5ce35ec8caddb12d5bffe15930a74345cd3ee SHA512 bd8ffdd3ee822da2a57a3405b139ec1e635dc8bb293dbd9abd05912b8929df29633304e64b97522e4590a3907ddfa3aefec3e4da5ab709b9be1857cc2ecd2018 +DIST hfstospell-0.5.2.tar.gz 152115 BLAKE2B 667c01672fd6fd6ee743a6542677ffe74e3900c27ab2754f8fa7dcc57081074bd98e8d82827fe176b2a6c9abc4565efcb3204df43110906f5a333405ec8a6bf2 SHA512 307aff3aec91ac6ffed3ebabdc2baa1a6e913431f57a80a0d0254be57fbd72e28d7592c35e0d72e5979f7e0b4c585f11b8eb91183b0877f9670a9cd5206c0140 diff --git a/dev-util/hfstospell/hfstospell-0.5.2.ebuild b/dev-util/hfstospell/hfstospell-0.5.2.ebuild new file mode 100644 index 000000000000..645a081e763b --- /dev/null +++ b/dev-util/hfstospell/hfstospell-0.5.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="HFST spell checker library and command line tool" +HOMEPAGE="https://github.com/hfst/hfst-ospell" +SRC_URI="https://github.com/hfst/hfst-ospell/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="app-arch/libarchive + dev-cpp/libxmlpp:2.6 + dev-libs/icu:= + dev-libs/tinyxml2" +RDEPEND="${DEPEND}" +BDEPEND="virtual/pkgconfig" + +S="${WORKDIR}/hfst-ospell-${PV}" + +src_prepare() { + default + eautoreconf +} + +src_install() { + default + find "${D}" -name '*.la' -delete -o -name '*.a' -delete || die +} |