0df8675b6c
Sponsored by:SkunkWerks, GmbH
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
PORTNAME= fwup
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.16.0
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Configurable embedded Linux firmware update creator and runner
|
|
WWW= https://github.com/fhunleth/fwup
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/autogen:devel/autogen \
|
|
${LOCALBASE}/bin/base64:converters/base64 \
|
|
${LOCALBASE}/bin/help2man:misc/help2man \
|
|
${LOCALBASE}/bin/mdir:filesystems/mtools \
|
|
${LOCALBASE}/bin/zip:archivers/zip
|
|
LIB_DEPENDS= libconfuse.so:devel/libconfuse
|
|
|
|
USES= autoreconf gettext-runtime libarchive libtool pkgconfig \
|
|
shebangfix
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= fhunleth
|
|
|
|
GNU_CONFIGURE= yes
|
|
GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share
|
|
|
|
SHEBANG_FILES= img2fwup scripts/*.sh
|
|
|
|
PLIST_FILES= bin/fwup \
|
|
bin/img2fwup \
|
|
share/bash-completion/completions/fwup \
|
|
share/man/man1/fwup.1.gz
|
|
|
|
PORTDOCS= README.md
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
pre-configure:
|
|
@(cd ${WRKSRC} && \
|
|
./autogen.sh)
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.md \
|
|
${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|