wok-next annotate cmark-gfm/receipt @ rev 20730

glib: up (2.56.1) with static libs and Python2
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue May 29 15:17:41 2018 +0300 (2018-05-29)
parents 1eb4aacb48ed
children f10e4fa916b0
rev   line source
al@19679 1 # SliTaz package receipt.
al@19679 2
al@19679 3 PACKAGE="cmark-gfm"
al@19679 4 VERSION="0.27.1.76"
al@19679 5 COMMIT="a81db63"
al@19679 6 CATEGORY="text"
al@19679 7 SHORT_DESC="Github fork of CommonMark parsing and rendering program in C"
al@19679 8 MAINTAINER="al.bobylev@gmail.com"
al@19679 9 LICENSE="BSD"
al@19679 10 WEB_SITE="https://github.com/github/cmark"
al@19679 11
al@19679 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@19679 13 WGET_URL="$GITHUB/github/cmark/tarball/${COMMIT:-$VERSION}"
al@19679 14
al@20516 15 BUILD_DEPENDS="cmake python3"
al@19679 16
al@19679 17 # Rules to configure and make the package.
al@19679 18 compile_rules()
al@19679 19 {
al@19679 20 mkdir build; cd build
al@19679 21 cmake .. -DCMAKE_INSTALL_PREFIX=/usr &&
al@19679 22 make &&
al@19679 23 make test &&
al@19679 24 make install
al@19679 25 }
al@19679 26
al@19679 27 # Rules to gen a SliTaz package suitable for Tazpkg.
al@19679 28 genpkg_rules()
al@19679 29 {
al@19783 30 copy cmark-gfm
al@19679 31 }