guru/dev-libs/md4c/md4c-0.4.8_p20220115.ebuild
NRK 471e02564e
dev-libs/md4c: moved from app-text
Signed-off-by: NRK <nrk@disroot.org>
2024-04-02 11:19:32 +00:00

46 lines
880 B
Bash

# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
# TODO(NRK):
# - enable tests
# - useflag for static lib (?)
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/mity/md4c.git"
else
COMMIT="e9ff661ff818ee94a4a231958d9b6768dc6882c9"
SRC_URI="https://github.com/mity/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/${PN}-${COMMIT}"
fi
DESCRIPTION="C Markdown parser. Fast, SAX-like interface, CommonMark Compliant."
HOMEPAGE="https://github.com/mity/md4c"
LICENSE="MIT"
SLOT="0"
src_prepare() {
cmake_src_prepare
}
src_configure() {
mycmakeargs=(
-DCMAKE_BUILD_TYPE=Release
-DBUILD_SHARED_LIBS=ON
)
cmake_src_configure
}
src_install() {
cmake_src_install
find "${ED}/usr/$(get_libdir)" -name '*.a' -exec rm {} \; || die
}