Skip to content
Snippets Groups Projects
Commit 46064ea7 authored by Leo's avatar Leo
Browse files

community/cmark: modernize

- Disable tests as they are incompatible with python3.8+
- Use None build type
- remove static() function
parent 628923e8
No related branches found
No related tags found
1 merge request!6784community/cmark: modernize
# Contributor: Leo <thinkabit.ukim@gmail.com>
# Maintainer:
pkgname=cmark
pkgver=0.29.0
pkgrel=0
pkgrel=1
pkgdesc="C reference implementation of CommonMark, a rationalized Markdown spec"
options="!check" # 2 Tests are incompatible with python3.8+
url="https://github.com/commonmark/cmark"
arch="all"
license="BSD-2-Clause"
......@@ -11,31 +13,20 @@ subpackages="$pkgname-doc $pkgname-static $pkgname-dev lib$pkgname:libs"
source="cmark-$pkgver.tar.gz::https://github.com/commonmark/cmark/archive/$pkgver.tar.gz"
build() {
mkdir -p "$builddir"/build
cmake . -B build \
-DCMAKE_BUILD_TYPE=MinSizeRel \
-DCMAKE_C_FLAGS_MINSIZEREL_INIT="$CFLAGS" \
-DCMAKE_CXX_FLAGS_MINSIZEREL_INIT="$CXXFLAGS" \
-DCMAKE_EXE_LINKER_FLAGS_MINSIZEREL_INIT="$LDFLAGS" \
if [ "$CBUILD" != "$CHOST" ]; then
CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux"
fi
cmake -B build \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_VERBOSE_MAKEFILE=ON
-DCMAKE_VERBOSE_MAKEFILE=ON \
$CMAKE_CROSSOPTS .
make -C build
}
check() {
make -C build test
}
package() {
make -C build install DESTDIR="$pkgdir"
}
static() {
depends=""
pkgdesc="$pkgdesc (static library)"
mkdir -p "$subpkgdir"/usr/lib
mv "$pkgdir"/usr/lib/*.a "$subpkgdir"/usr/lib
}
sha512sums="06eb110cfd90c9e980c022b7588e28864d15a4da5d07d61ad4b27c6de47367492b9e58e9434e62b07517aa6dc484f17af13916808be3188f38c37d20cbf33112 cmark-0.29.0.tar.gz"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment