blob: 794b2fcca1aabbfdf32ebc2c0e70c198af0ff691 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.1 2022/02/22 10:11:01 pin Exp $
DISTNAME= picat-0.1.0
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_GITHUB:=SimonPersson/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/SimonPersson/picat/
COMMENT= Converts images to sixel graphics and outputs them to stdout
LICENSE= mit
.include "cargo-depends.mk"
INSTALLATION_DIRS= bin
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/target/release/picat \
${DESTDIR}${PREFIX}/bin
.include "../../lang/rust/cargo.mk"
.include "../../mk/bsd.pkg.mk"
|