34 lines
922 B
Bash
34 lines
922 B
Bash
# Template file for 'cmark-gfm'
|
|
pkgname=cmark-gfm
|
|
version=0.29.0.gfm.2
|
|
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=66d92c8bef533744674c5b64d8744227584b12704bcfebbe16dab69f81e62029
|
|
|
|
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
|
|
}
|
|
}
|