diff options
Diffstat (limited to 'textproc/doxx/Makefile')
-rw-r--r-- | textproc/doxx/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/textproc/doxx/Makefile b/textproc/doxx/Makefile new file mode 100644 index 000000000000..61c1b04fd103 --- /dev/null +++ b/textproc/doxx/Makefile @@ -0,0 +1,24 @@ +PORTNAME= doxx +DISTVERSIONPREFIX= v +DISTVERSION= 0.1.1 +CATEGORIES= textproc + +MAINTAINER= wen@FreeBSD.org +COMMENT= Docx files in your terminal +WWW= https://github.com/bgreenwell/doxx + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libzstd.so:archivers/zstd + +USES= cargo +USE_GITHUB= yes +GH_ACCOUNT= bgreenwell + +PLIST_FILES= bin/${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKDIR}/target/release/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include <bsd.port.mk> |