diff options
author | 2021-03-22 09:18:03 +0000 | |
---|---|---|
committer | 2021-03-22 09:22:40 +0000 | |
commit | 4d13aeea9eda98aa6e646cc703ba018c6c46134a (patch) | |
tree | 5594fc38773a11fdc4df6aff244549c3632dc424 /sys-devel/slibtool/slibtool-0.5.32.ebuild | |
parent | profiles/arch/arm64: unmask sys-libs/zlib-ng[cpu_flags_arm_neon] (diff) | |
download | gentoo-4d13aeea9eda98aa6e646cc703ba018c6c46134a.tar.gz gentoo-4d13aeea9eda98aa6e646cc703ba018c6c46134a.tar.bz2 gentoo-4d13aeea9eda98aa6e646cc703ba018c6c46134a.zip |
sys-devel/slibtool: add 0.5.32
Bug: https://bugs.gentoo.org/777435
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-devel/slibtool/slibtool-0.5.32.ebuild')
-rw-r--r-- | sys-devel/slibtool/slibtool-0.5.32.ebuild | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/sys-devel/slibtool/slibtool-0.5.32.ebuild b/sys-devel/slibtool/slibtool-0.5.32.ebuild new file mode 100644 index 000000000000..499cc40bf4b0 --- /dev/null +++ b/sys-devel/slibtool/slibtool-0.5.32.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A skinny libtool implementation, written in C" +HOMEPAGE="https://git.foss21.org/slibtool" +if [[ "${PV}" == *9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://git.foss21.org/slibtool" +else + SRC_URI="https://dl.midipix.org/slibtool/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~ia64 ~sparc" +fi + +LICENSE="MIT" +SLOT="0" + +src_configure() { + # Custom configure script (not generated by autoconf) + ./configure --host=${CHOST} --prefix="${EPREFIX}"/usr || die +} |