wok-next view cmark-gfm/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents d5aab818505e
children 81c22da6eb2a
line source
1 # SliTaz package receipt v2.
3 PACKAGE="cmark-gfm"
4 VERSION="0.28.3.gfm.19"
5 CATEGORY="text"
6 SHORT_DESC="Github fork of CommonMark parsing and rendering program in C"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="BSD"
9 WEB_SITE="https://github.com/github/cmark-gfm"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/github/cmark/archive/$VERSION.tar.gz"
14 BUILD_DEPENDS="cmake python3"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 mkdir build
19 cd build
20 cmake \
21 -DCMAKE_INSTALL_PREFIX=/usr \
22 .. &&
23 make &&
24 make test &&
25 make install || return 1
27 cd $src
28 cook_pick_docs README.md benchmarks.md changelog.txt why-cmark-and-not-x.md
29 }