ebf29acc6c
PR: 270080
56 lines
1.6 KiB
Makefile
56 lines
1.6 KiB
Makefile
PORTNAME= delta
|
|
DISTVERSION= 0.15.1
|
|
PORTREVISION= 4
|
|
CATEGORIES= devel
|
|
PKGNAMEPREFIX= git-
|
|
|
|
MAINTAINER= DtxdF@disroot.org
|
|
COMMENT= Syntax-highlighting pager for git/diff
|
|
WWW= https://dandavison.github.io/delta/
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libonig.so:devel/oniguruma
|
|
RUN_DEPENDS= git:devel/git
|
|
|
|
USES= cargo cpe
|
|
CPE_VENDOR= ${PORTNAME}_project
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= dandavison
|
|
|
|
CONFLICTS_INSTALL= delta
|
|
PLIST_FILES= bin/delta
|
|
|
|
OPTIONS_DEFINE= BASH FISH ZSH
|
|
OPTIONS_DEFAULT= BASH FISH ZSH
|
|
BASH_PLIST_FILES= etc/bash_completion.d/_${PORTNAME}.bash
|
|
FISH_PLIST_FILES= share/fish/vendor_functions.d/${PORTNAME}.fish
|
|
ZSH_PLIST_FILES= share/zsh/site-functions/_${PORTNAME}
|
|
|
|
# sys-info-0.9.1 crate fix: https://github.com/FillZpp/sys-info-rs/issues/80
|
|
post-patch:
|
|
@${REINPLACE_CMD} \
|
|
-e '/get_cpu/s|unsigned long|uint64_t|' \
|
|
-e '/get_proc_total/s|unsigned long|uint64_t|' \
|
|
${WRKSRC}/cargo-crates/sys-info-*/c/*.[ch]
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/delta
|
|
|
|
post-install-BASH-on:
|
|
${MKDIR} ${STAGEDIR}${LOCALBASE}/etc/bash_completion.d
|
|
${INSTALL_DATA} ${WRKSRC}/etc/completion/completion.bash \
|
|
${STAGEDIR}${PREFIX}/etc/bash_completion.d/_${PORTNAME}.bash
|
|
|
|
post-install-FISH-on:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/vendor_functions.d
|
|
${INSTALL_DATA} ${WRKSRC}/etc/completion/completion.fish \
|
|
${STAGEDIR}${PREFIX}/share/fish/vendor_functions.d/${PORTNAME}.fish
|
|
|
|
post-install-ZSH-on:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions
|
|
${INSTALL_DATA} ${WRKSRC}/etc/completion/completion.zsh \
|
|
${STAGEDIR}${PREFIX}/share/zsh/site-functions/_${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|