gentoo-overlay/x11-libs/libump/libump-3.0.ebuild

33 lines
693 B
Bash
Raw Normal View History

2021-05-18 08:21:07 -05:00
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
2022-08-09 22:18:31 -05:00
EAPI=7
2021-05-18 08:21:07 -05:00
inherit autotools
if [ "${PV}" = "9999" ]; then
EGIT_REPO_URI="https://github.com/linux-sunxi/libump"
inherit git-r3
KEYWORDS=""
else
COMMIT_ID="ec0680628744f30b8fac35e41a7bd8e23e59c39f"
SRC_URI="https://github.com/linux-sunxi/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}-git.tar.gz"
KEYWORDS="~amd64 ~arm"
IUSE=""
S=${WORKDIR}/${PN}-${COMMIT_ID}
fi
DESCRIPTION="Universal memory provider userspace library"
HOMEPAGE="https://github.com/linux-sunxi/libump"
LICENSE="Apache-2.0"
SLOT="0"
DEPEND="virtual/pkgconfig"
src_prepare() {
eautoreconf
2022-08-09 22:18:31 -05:00
default
2021-05-18 08:21:07 -05:00
}