1765cea139
- Remove mobile touch event in web component - web: Add base command, eg. base 16 to change the number base to 16 - Make sgn(0) equal to zero - mobile: Use local font file - mobile: Remove proprietary dependencies and unnecessary permissions - Add metadata - Fix wasm build error
29 lines
659 B
Makefile
29 lines
659 B
Makefile
# $NetBSD: Makefile,v 1.7 2023/01/25 20:13:59 pin Exp $
|
|
|
|
DISTNAME= kalker-2.0.3
|
|
CATEGORIES= math
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=PaddiM8/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pin@NetBSD.org
|
|
HOMEPAGE= https://kalker.strct.net/
|
|
COMMENT= CLI calculator supporting math-like syntax with user-defined variables
|
|
LICENSE= mit
|
|
|
|
PREV_PKGPATH= math/kalk
|
|
CONFLICTS+= kalk-[0-9]*
|
|
SUPERSEDES+= kalk-[0-9]*
|
|
|
|
.include "cargo-depends.mk"
|
|
|
|
USE_LANGUAGES+= c c++
|
|
USE_TOOLS+= m4
|
|
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/target/release/kalker \
|
|
${DESTDIR}${PREFIX}/bin
|
|
|
|
.include "../../lang/rust/cargo.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|