From e023255fa4ef9c53ad20b8e5ebf16edaafbfaa7d Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Sat, 26 Mar 2022 12:31:02 +0100 Subject: [PATCH] tokei: enable additional output formats --- srcpkgs/tokei/template | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/srcpkgs/tokei/template b/srcpkgs/tokei/template index 32aeea5e1a2a..f20a1cae0bf3 100644 --- a/srcpkgs/tokei/template +++ b/srcpkgs/tokei/template @@ -1,8 +1,9 @@ # Template file for 'tokei' pkgname=tokei version=12.1.2 -revision=1 +revision=2 build_style=cargo +configure_args="--features all" short_desc="Count lines of code" maintainer="Jan Christian Grünhage " license="Apache-2.0, MIT" @@ -10,6 +11,12 @@ homepage="https://github.com/XAMPPRocky/tokei" distfiles="https://github.com/XAMPPRocky/tokei/archive/v${version}.tar.gz" checksum=81ef14ab8eaa70a68249a299f26f26eba22f342fb8e22fca463b08080f436e50 +# on i686 LLVM has problems with compiling doctests +case "$XBPS_TARGET_MACHINE" in + i686) make_check_args+=" --lib";; + *) ;; +esac + post_install() { vlicense LICENCE-MIT }