mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
a1ce50e9f3
iamb is a Matrix client for the terminal that uses Vim keybindings. It includes support for: o Threads, spaces, E2EE, and read receipts o Image previews in terminals that support it (sixels, Kitty, and iTerm2), or using pixelated blocks for those that don't o Notifications via terminal bell or desktop environment o Creating, joining, and leaving rooms o Sending and accepting room invitations o Editing, redacting, and reacting to messages o Custom keybindings o Multiple profiles WWW: https://iamb.chat/
28 lines
620 B
Makefile
28 lines
620 B
Makefile
PORTNAME= iamb
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.0.9
|
|
CATEGORIES= net-im
|
|
|
|
MAINTAINER= ashish@FreeBSD.org
|
|
COMMENT= Matrix client for Vim addicts
|
|
WWW= https://iamb.chat/
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/oniguruma.pc:devel/oniguruma
|
|
|
|
USES= cargo ssl
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ulyssa
|
|
|
|
PLIST_FILES= bin/iamb \
|
|
share/man/man1/iamb.1.gz \
|
|
share/man/man5/iamb.5.gz
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/docs/iamb.1 ${STAGEDIR}${PREFIX}/share/man/man1
|
|
${INSTALL_DATA} ${WRKSRC}/docs/iamb.5 ${STAGEDIR}${PREFIX}/share/man/man5
|
|
|
|
.include <bsd.port.mk>
|