35 lines
923 B
Bash
35 lines
923 B
Bash
# Template file for 'cmark-gfm'
|
|
pkgname=cmark-gfm
|
|
version=0.29.0.gfm.13
|
|
revision=1
|
|
build_style=cmake
|
|
short_desc="GitHub's fork of cmark, a CommonMark markdown renderer"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="MIT"
|
|
homepage="https://github.com/github/cmark-gfm"
|
|
distfiles="https://github.com/github/cmark-gfm/archive/${version}.tar.gz"
|
|
checksum=5abc61798ebd9de5660bc076443c07abad2b8d15dbc11094a3a79644b8ad243a
|
|
|
|
pre_configure() {
|
|
# Fix the SONAME version to use just the major number
|
|
vsed -i -e 's;\(SOVERSION ${PROJECT_VERSION_MAJOR}\).*;\1;' \
|
|
src/CMakeLists.txt extensions/CMakeLists.txt
|
|
}
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
cmark-gfm-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.so"
|
|
vmove "usr/lib/*.a"
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/cmake
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|