You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
547 B
27 lines
547 B
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="A library for converting unicode strings to numbers and vice versa"
|
|
HOMEPAGE="https://billposer.org/Software/libuninum.html"
|
|
SRC_URI="https://billposer.org/Software/Downloads/${P}.tar.bz2"
|
|
|
|
KEYWORDS="amd64 x86"
|
|
LICENSE="GPL-2 GPL-2+ LGPL-2 LGPL-2.1"
|
|
SLOT="0"
|
|
|
|
src_configure() {
|
|
local myeconfargs=(
|
|
--disable-static
|
|
)
|
|
|
|
econf "${myeconfargs[@]}"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
find "${D}" -name '*.la' -delete || die
|
|
}
|